/* General Body Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
    margin-left: 20px; /* Adjust the value as needed */
}

h1 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #4CAF50;
}

h2, h3, h4 {
    margin-top: 20px;
    color: #333;
}

/* General Button Styles */
button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
}

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

/* Form Section */
form {
    background-color: #fff;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap; /* Allow wrapping if there are too many items */
    gap: 15px; /* Space between the elements */
}

/* Label and Input elements in the same row */
form label {
    font-size: 16px;
    margin-bottom: 5px;
    display: inline-block;
    color: #4CAF50;
    width: 120px; /* Set a fixed width for the labels */
}

form input[type="text"],
form input[type="number"] {
    width: 200px; /* Set a fixed width for the inputs */
    padding: 8px;
    margin: 0; /* Remove vertical margin */
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}

/* Response Message */
#responseMessage {
    margin-top: 20px;
    font-weight: bold;
    font-size: 16px;
}

/* Account Display Section */
#expiredAccountsContainer,
#allAccountsContainer {
    margin-top: 20px;
}

.account {
    background-color: #fff;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.account p {
    margin: 5px 0;
}

hr {
    border: 1px solid #ddd;
    margin: 10px 0;
}

/* Error Message */
p.error {
    color: red;
    font-size: 14px;
}
