
#loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    visibility: hidden;
    z-index: 999999;
}

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Loading Text */
#loading-container p {
    color: white;
    font-size: 18px;
    margin-top: 20px;
}


        /* Notification Container */
        #notification-container {
    position: fixed;
    top: 20px;
    left: 20px;
    width: auto;
    z-index: 9999;
}

/* Notification */
.notification {
    background-color: #4caf50; /* Green background */
    color: white; /* Text color */
    padding: 15px 25px;
    margin: 10px 0;
    border-radius: 55px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-20px);
    font-family: 'poppins';
    animation: slideDown 0.3s forwards, fadeOut 0.8s 1.0s forwards;
}

/* Slide down animation */
@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade out animation */
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}


.sec1, .sec0, body {
    scrollbar-width: none !important;
}

  ::-webkit-scrollbar-thumb {
    background-color: rgb(99, 166, 224) !important;
  }