﻿

.mud-nav-link-text {
    color: #fff;
}

.bg-gradient-header {
    background-image: linear-gradient(135deg, #023e68 0%, #3b82f6 100%);
}

.dark .bg-gradient-header {
    background-image: linear-gradient(135deg, #1f2937 0%, #4b5563 100%);
}

.text-shadow-md {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.mud-nav-link-text a {
    text-decoration: none;
}
.no-underline-nav-link a {
    text-decoration: none;
}

.custom-menu-container {
    position: relative;
    display: inline-block;
    font-family: sans-serif;
}

.menu-header {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.menu-headernotification {
    display: flex;
    align-items: center;
    padding: 4px 6px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.menu-header:hover {
    background-color: rgba(224, 224, 224, 0.1);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #007BFF;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-right: 8px;
}

.user-name {
    font-weight: 500;
    color: #333;
}

.menu-arrow {
    margin-left: 8px;
    color: #fff;
    transition: transform 0.2s ease;
}

    .menu-arrow.open {
        transform: rotate(180deg);
    }

.menu-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-width: 150px;
    margin-top: 8px;
    animation: fadeIn 0.3s ease-out;
}

.menu-dropdownnotification {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-width: 150px;
    margin-top: 8px;
    animation: fadeIn 0.3s ease-out;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    cursor: pointer;
    color: #555;
    transition: background-color 0.2s ease, color 0.2s ease;
}

    .menu-item:first-child {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }

    .menu-item:last-child {
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }

    .menu-item:hover {
        background-color: #f5f5f5;
        color: #007BFF;
    }

    .menu-item svg {
        margin-right: 12px;
        width: 20px;
        height: 20px;
    }

@@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
