@charset "utf-8";

/* General text styles */
body {
    font-family: 'Source Sans Pro', sans-serif;
    background-color: #EFF5F8;
    color: #4B4B4B;
    line-height: 1.6;
}

/* Container for the calendar differences section */
#calendar-differences-container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

#calendar-differences-container h4 {
    color: #333333;
    font-weight: bold;
    margin-top: 20px;
}

#calendar-differences-container p {
    margin-bottom: 20px;
    color: #4B4B4B;
}

/* Styling for form fields to be horizontal and centered */
#calendar-fields-container {
    text-align: center;
}

#calendar-fields {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#calendar-fields label {
    margin-right: 10px;
    font-weight: bold;
}

#calendar-fields input,
#calendar-fields select {
    margin-right: 10px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#calendar-fields button {
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

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