/* Officials List CSS Styles */
/* Add this block to your website's main stylesheet for the officials list. */

.officials-main-title {
    font-size: 1.75rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1f2937; /* Dark Gray Text */
}

.officials-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding: 1rem;
    background-color: #f9fafb; /* Lighter Gray background */
    border: 1px solid #d1d5db; /* Gray Border */
    border-radius: 8px;
}

.officials-column {
    width: 50%;
}

.officials-header {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFFFFF; /* White Text */
    background-color: #003C71; /* GPSA Dark Blue */
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border-radius: 7px;
    text-align: center;
}

.officials-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.officials-list li {
    padding: 0.5rem 0.25rem;
    border-bottom: 1px solid #e5e7eb;
    color: #1f2937; /* Dark Gray Text */
}

.officials-list li:last-child {
    border-bottom: none;
}
