/* General Styles */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    text-align: center;
}

button {
    width: 100%;
    padding: 12px;
    border: none;
    background-color: #007BFF;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    margin-top: 10px;
    transition: background 0.3s;
}

button:hover {
    background-color: #0056b3;
}

/* Status text */
#status {
    margin-top: 15px;
    font-weight: bold;
    color: #333;
}

/* Mobile View */
@media (max-width: 600px) {
    .container {
        width: 95%;
        padding: 15px;
    }

    h1 {
        font-size: 1.3em;
    }

    input, button {
        font-size: 0.9em;
    }
}

/* Tablet View */
@media (min-width: 601px) and (max-width: 1024px) {
    .container {
        max-width: 500px;
    }

    h1 {
        font-size: 1.7em;
    }
}

/* Desktop View */
@media (min-width: 1025px) {
    .container {
        max-width: 450px;
    }
}
