/* styles.css */

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #191c34;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
    padding: 20px; /* Add some padding for mobile */
}

.logo img {
    width: 100%; /* Make logo responsive */
    max-width: 560px; /* Maximum size for larger screens */
    height: auto;
    margin-bottom: 20px;
}

.pin-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.pin-box {
    width: 65px;
    height: 65px;
    border: 2px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    font-size: 54px;
    font-weight: bold;
    color: #fff; /* Set the text color to white */
}

.loading {
    display: flex; /* Use flexbox for centering */
    justify-content: center; /* Center horizontally */
    margin-top: 45px;
}

.spinner {
    width: 140px;
    height: 140px;
    border: 4px solid #ddd;
    border-top: 4px solid #f0641c;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.reload-button button {
    background-color: #f0641c; /* Button background color */
    color: #ffffff; /* Text color */
    font-size: 20px; /* Larger text */
    padding: 15px 30px; /* Padding for a larger button */
    border: none; /* Remove default border */
    border-radius: 10px; /* Rounded corners */
    cursor: pointer; /* Change cursor to pointer on hover */
    font-weight: bold; /* Make the text bold */
    transition: background-color 0.3s ease; /* Smooth transition effect */
}



@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .pin-box {
        width: 45px; /* Adjust pin size for smaller screens */
        height: 45px;
        font-size: 35px;
        margin: 0 3px;
    }

    .spinner {
        width: 110px; /* Adjust spinner size for smaller screens */
        height: 110px;
    }
}

@media (max-width: 480px) {
    .pin-container {
        flex-wrap: wrap; /* Allow pin boxes to wrap for very small screens */
    }

    .pin-box {
        margin: 5px; /* Add more margin for better spacing on small screens */
    }

    .logo img {
        max-width: 300px; /* Further reduce max width for very small screens */
    }
}
