body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    padding: 20px;
    line-height: 1.6;
    margin: 0;
    max-width: 100%;
}

input[type="text"] {
    font-size: 18px; /* Makes text inside input larger */
    padding: 10px 20px; /* Adds more space inside input */
    width: 100%; /* Sets the input width to fill its container */
    box-sizing: border-box; /* Ensures padding does not affect overall width */
    /* Add more styles as needed */
}

h1 {
    color: #333;
}

ol {
    background: #e7e7e7;
    padding: 20px;
}

p, .note {
    margin-bottom: 10px;
}

.note {
    background-color: #ffffe0;
    border-left: 6px solid #ffeb3b;
    padding: 10px;
    margin-top: 20px;
}

form {
    margin-top: 20px;
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

button:hover {
    background-color: #45a049;
}

.success-message {
    display: none;
    color: green;
    background-color: #e7f4e7;
    padding: 10px;
    margin-top: 20px;
    border: 1px solid green;
    border-radius: 5px;
}

@media (min-width: 600px) {
    body {
        padding: 40px;
    }

    button {
        width: auto;
        display: inline-block;
    }
}

.button-style {
    display: inline-block;
    padding: 8px 15px;
    margin: 5px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: #fff;
    background-color: #4CAF50;
    border: none;
    border-radius: 5px;
    box-shadow: 0 9px #999;
}

.button-style:hover {background-color: #3e8e41}

.button-style:active {
    background-color: #3e8e41;
    box-shadow: 0 5px #666;
    transform: translateY(4px);
}

.back-button {
    background-color: #f44336; /* Red */
}

.back-button:hover {background-color: #da190b}


.loading-spinner {
    border: 5px solid #f3f3f3; /* Light grey */
    border-top: 5px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
