body {
    font-family: Helvetica, Arial, sans-serif;
    background-color: #cce7ff;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.divider {
    margin: 30px 0 20px;
    border: none;
    border-top: 2px solid #ccc;
    width: 100%;
}

.utilities {
    text-align: center;
    width: 100%;
}

.utilities h3 {
    margin-bottom: 10px;
    color: #444;
    font-size: 1.1em;
}

input[type="text"] {
    width: 100%;
    padding: 12px;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
}

input[type="number"] {
    width: 100%;
    padding: 12px;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
}

.status-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    width: 100%;
}

.status-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background-color: #ddd;
    border: 1px solid #aaa;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.status-btn.selected {
    background-color: #007bff;
    color: white;
    border-color: #0056b3;
}

button {
    width: 100%;
    padding: 12px;
    font-size: 18px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

button:hover {
    background-color: #0056b3;
}

.button-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Adds spacing between buttons */
    margin-top: 20px; /* Space above buttons */
}

#response-message {
    margin-top: 15px;
    font-size: 16px;
}

.success {
    color: green;
    font-weight: bold;
}

.error {
    color: red;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 500px) {
    .container {
        width: 90%;
    }

    h1 {
        font-size: 20px;
    }

    input[type="text"], .status-btn, button {
        font-size: 16px;
    }
}
