    /* Loader Styles */
    .loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(56, 56, 56);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.3s ease-in-out;
    }

    .loading-text {
    font-size: 24px;
    color: white;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
    animation: fadeInOut 1.2s infinite alternate;
    }

    @keyframes fadeInOut {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
    }

    .loader-circle {
    width: 75px;
    height: 75px;
    border: 10px solid rgba(0, 0, 0, 0.1);
    border-top-color: lightgreen;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    }

    @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
    }
