/* Life Members Page Specific Styles */
.page-header {
    background-color: var(--light-bg);
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-bottom: 4px solid var(--secondary-green);
}

.page-title {
    color: var(--dark-text);
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    color: #666;
    font-size: 1.1rem;
}

.year-section {
    margin-bottom: 3rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.year-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, #1b5e20 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.year-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

/* Year Navigation */
.year-navigation {
    position: sticky;
    top: calc(var(--navbar-height) + 20px);
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    z-index: 100;
}

.year-nav-title {
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-bg);
}

.year-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.year-link {
    background-color: var(--light-bg);
    color: var(--dark-text);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.year-link:hover {
    background-color: var(--secondary-green);
    color: white;
}

.year-link.active {
    background-color: var(--primary-green);
    color: white;
}

.member-count {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Table Styles */
.members-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.members-table thead {
    background-color: var(--secondary-green);
    color: white;
}

.members-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    border: none;
}

.members-table tbody tr {
    transition: background-color 0.2s ease;
}

.members-table tbody tr:nth-child(even) {
    background-color: rgba(129, 199, 132, 0.05);
}

.members-table tbody tr:hover {
    background-color: rgba(129, 199, 132, 0.15);
}

.members-table td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    vertical-align: top;
}

.member-name {
    font-weight: 600;
    color: var(--dark-text);
}

.member-department {
    color: #555;
}

.member-place {
    color: #666;
}

.member-email a {
    color: var(--primary-green);
    text-decoration: none;
}

.member-email a:hover {
    text-decoration: underline;
}