/* General Layout */
.loading-container {
    max-width: 1000px;  /* Set a reasonable max-width for larger screens */
    margin: 5% auto;
    padding: 50px 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    animation: fadeIn 1s ease-out;  /* Subtle fade-in animation */
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.loading-title {
    font-size: 3em;  /* Larger title for big screens */
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.spinner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
}

.spinner {
    border: 6px solid rgba(0, 0, 0, 0.1);
    border-top: 6px solid #f7362f;
    border-radius: 50%;
    width: 100px;  /* Bigger spinner for larger screens */
    height: 100px;
    animation: spin 2s linear infinite;
}

.spinner-epson {
    border: 6px solid rgba(0, 0, 0, 0.1);
    border-top: 6px solid #0068AC;
    border-radius: 50%;
    width: 100px;  /* Bigger spinner for larger screens */
    height: 100px;
    animation: spin 2s linear infinite;
}

.spinner-brother {
    border: 6px solid rgba(0, 0, 0, 0.1);
    border-top: 6px solid #0d2ea0;
    border-radius: 50%;
    width: 100px;  /* Bigger spinner for larger screens */
    height: 100px;
    animation: spin 2s linear infinite;
}

.spinner-hp {
    border: 6px solid rgba(0, 0, 0, 0.1);
    border-top: 6px solid #004fda;
    border-radius: 50%;
    width: 100px;  /* Bigger spinner for larger screens */
    height: 100px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    margin-top: 20px;
    font-size: 1.5em;
    color: #555;
    font-weight: 600;
}

.footer-note {
    text-align: center;
    font-size: 1em;
    color: #888;
    margin-top: 40px;
    opacity: 0.7;
}

/* Media Queries for Larger Screens */

/* For screens 1200px and larger */
@media screen and (min-width: 1200px) {
    .loading-container {
        max-width: 900px;  /* A larger max-width for extra space */
        padding: 70px 40px;
    }

    .loading-title {
        font-size: 3.2em;  /* Larger title for wide screens */
    }

    .spinner {
        width: 120px;
        height: 120px;
    }

    .loading-text {
        font-size: 1.6em;
    }
}

/* For very large screens (extra-large desktops) */
@media screen and (min-width: 1600px) {
    .loading-container {
        max-width: 1000px;  /* Even larger container for huge screens */
        padding: 80px 50px;
    }

    .loading-title {
        font-size: 3.5em;  /* Larger title */
    }

    .spinner {
        width: 140px;
        height: 140px;
    }

    .loading-text {
        font-size: 1.8em;
    }
}

/* Responsive Design for Medium and Smaller Screens */
@media screen and (max-width: 768px) {
    .loading-container {
        padding: 30px 20px;
    }

    .loading-title {
        font-size: 2.5em;
    }

    .spinner {
        width: 60px;
        height: 60px;
    }

    .loading-text {
        font-size: 1.2em;
    }
}

@media screen and (max-width: 480px) {
    .loading-container {
        padding: 20px 15px;
    }

    .loading-title {
        font-size: 1.8em;
    }

    .spinner {
        width: 50px;
        height: 50px;
    }

    .loading-text {
        font-size: 1em;
    }
}
