/* -------------------------------------------------
   COMMON PAGE STYLES (2026 UPDATE)
---------------------------------------------------*/
.common-page {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: Arial, sans-serif;
    background-color: #ffffff; /* White Background */
}

.page-title {
    text-align: center;
    font-size: 30px;
    color: #800000; /* Maroon Primary */
    margin-bottom: 30px;
    font-weight: 700;
}

.section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 22px;
    color: #800000; /* Maroon Primary */
    margin-bottom: 15px;
    font-weight: 600;
    border-left: 5px solid #D4AF37; /* Soft Gold Accent */
    padding-left: 10px;
}

.styled-list {
    padding-left: 20px;
    line-height: 1.8;
    color: #333;
}

.styled-list li {
    margin-bottom: 6px;
}

/* -------------------------------------------------
   TABLE STYLES
---------------------------------------------------*/
.table-wrapper {
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(128, 0, 0, 0.08); /* Subtle maroon shadow */
}

.members-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background: #ffffff;
}

.members-table th {
    background: #800000; /* Maroon Primary */
    color: #ffffff; /* White Text */
    padding: 12px 10px;
    font-size: 16px;
    border-bottom: 3px solid #D4AF37; /* Soft Gold Header Border */
}

.members-table td {
    padding: 10px;
    border: 1px solid #eeeeee;
    color: #333;
}

/* Zebra Striping */
.members-table tr:nth-child(even) {
    background: #fffcf5; /* Faint gold tint for readability */
}

/* Hover State */
.members-table tr:hover {
    background: #fdf2f2; /* Faint maroon tint on hover */
    transition: background 0.2s ease;
}
