﻿/*MaingLayout*/
.MainLayout-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 40px;
    width: 40px;
    padding: 0;
}

.notification-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 0.65rem;
    padding: 2px 5px;
    z-index: 10;
}

.notification-dropdown {
    position: absolute;
    top: 64px;
    right: 80px;
    width: 320px;
    z-index: 1050;
    border-radius: 0.75rem;
}

.notification-body {
    max-height: 250px;
    overflow-y: auto;
}

.notification-badge {
    position: absolute;
    top: 4px;
    right: 2px;
    font-size: 0.7rem;
    padding: 2px 6px;
    z-index: 10;
}

.notification-dropdown .list-group-item {
    transition: background-color 0.2s ease;
    cursor: pointer;
    padding: 0.75rem 1rem;
}

    .notification-dropdown .list-group-item:hover {
        background-color: #f8f9fa;
    }

.notification-dropdown::-webkit-scrollbar {
    width: 6px;
}

.notification-dropdown::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}
/*Index.html*/

.custom-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

    .custom-loading.hidden {
        opacity: 0;
        pointer-events: none;
    }

.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #e0e0e0;
    border-top-color: #007bff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.text {
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #444;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}



