/* General body styles */
body {
    font-family: Arial, sans-serif;
    background-color: #05445e;
    color: white;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header styles */
.header {
    background-color: #06667e;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    border-bottom: 2px solid #033d56;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: auto;
    width: 150px;
}

/* Button styles */
.button-primary {
    background-color: #ffc107;
    color: #05445e;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
}

.button-primary:hover {
    background-color: #e0a800;
    color: white;
}

/* Form container styles */
.form-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #333;
}

.form-container h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #05445e;
}

/* Input fields */
input[type="text"], input[type="email"], input[type="datetime-local"] {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.list-group-item {
    background-color: #033d56; /* Dark background color */
    color: white; /* Ensure text is white */
    border: none; /* Optional: Remove border for a cleaner look */
}

.list-group-item h5 {
    color: #ffc107; /* Highlighted color for titles, optional */
}

.list-group-item button {
    color: white;
    background-color: #06667e;
    border: none;
}

.list-group-item button:hover {
    background-color: #05445e;
}

/* Submit button */
input[type="submit"] {
    width: 100%;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: bold;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #218838;
}

/* Results container */
#results p {
    font-size: 16px;
    margin: 5px 0;
    font-weight: bold;
    color: #333;
}

/* Responsive design */
@media (max-width: 768px) {
    .form-container {
        padding: 10px;
    }

    .button-primary {
        width: 100%;
        text-align: center;
    }
}