﻿* {
    color: #344e41;
    text-decoration: none !important;
    list-style-type: none;
}

.navbar-brand {
    color: black;
    font-weight: bold;
    font-size: 1.4rem;
}

    .navbar-brand i {
        color: #7ab730;
        margin-right: 6px;
    }

.navbar-nav .nav-link {
    color: black;
    transition: color 0.2s ease;
}

    .navbar-nav .nav-link:hover {
        color: #7ab730 !important;
    }

.navbar-nav .nav-link.active {
    color: #7ab730 !important;
    border-bottom: 3px solid #7ab730;
    font-weight: bold;
}

.dropdown-item {
    color: #344e41;
}

    .dropdown-item:hover {
        /*background-color: #7ab730;*/
        color: #7ab730;
    }

.btn-custom {
    background-color: #7ab730;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 6px 14px;
    margin-left: 8px;
    transition: background-color 0.2s ease;
}

.btn-logout {
    background-color: #ff5252;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 6px 14px;
    margin-left: 8px;
    transition: background-color 0.2s ease;
}


    .btn-custom:hover {
        opacity: 0.8;
        color: white;
    }
