body {
            font-family: Arial, sans-serif;
            margin: 0;
            background-color: #111111;
            padding: 0;
            display: flex; 
        }
        .navbar {
            animation: fadeIn 1s forwards;
            opacity: 0;
            background-color: #000000;
            overflow: hidden;
            width: 100%; 
            height: 50px; 
            position: fixed; 
            top: 0;
            z-index: 1; 
            padding: 10px 0; 
        }
        .navbar a {
            float: left;
            display: block;
            color: white;
            text-align: center;
            padding: 14px 16px;
            text-decoration: none;
        }
        .navbar a:hover {
            background-color: #ddd;
            color: black;
        }
        .navbar img {
            height: 40px; 
            margin: 0; 
            vertical-align: middle; 
            margin-left: 10px;
            float: left;
        }
        .navbar .logo-text {
            float: left;
            color: white;
            font-size: 24px; 
            line-height: 50px; 
            margin-left: 10px; 
        }
        .UserDropDown {
            float: right; 
            position: relative; 
        }
        .dropbtn {
            background-color: #000000;
            color: white;
            padding: 14px 16px;
            font-size: 16px;
            border: none;
            cursor: pointer;
            display: flex; 
            align-items: center; 
        }
        .dropdown-content {
    display: none; 
    position: fixed;  
    background-color: #000000;
    min-width: 160px; 
    padding: 10px;
    border: none;
    border-radius: 10px; 
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1; 
    top: 60px;
    right: 0; 
}
    .dropdown-content-title {
        color: white;
        padding: 12px 16px;
        margin: 0;
        font-size: 15px;
        font-weight: bold;
    }
    .dropdown-content a {
        color: white;
        padding: 12px 16px;
        text-decoration: none;
        height: 10px;
        display: flex;
        align-items: center;
    }
    .dropdown-content a img {
        margin-right: 8px; 
        width: auto;
        height: 50px;
    }
    .dropdown-content a:hover {
        background-color: #444444; 
        transform: scale(1.10); 
    }
    @keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.spinning {
    animation: spin 1s linear infinite; 
}
.space {
            height: 10px;
        }
.loader-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: none; 
            justify-content: center;
            align-items: center;
            z-index: 9999; 
        }

        .loader {
            border: 8px solid #f3f3f3; 
            border-top: 8px solid #db3434a1; 
            border-radius: 50%;
            width: 60px;
            height: 60px;
            animation: spin 2s linear infinite;
        }
        .mainBody {
            animation: fadeIn 1s forwards;
            opacity: 0;
            max-width: 1300px;
            margin: 0 auto;
            padding: 20px;
            color: white;
            position: relative;
            top: 0;
        }
        .buttonDashboard {
            background-color: #5865F2;
            color: white;
            padding: 15px 15px;
            border-radius: 10px;
            margin-right: 30px;
            text-decoration: none;
            display: flex; 
            align-items: center;
        }
        .buttonDashboard:hover {
            background-color: #3269df;
            transform: scale(1.10); 
        }
        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }
        