/* Add these new styles to your existing style.css */

/* Active tab highlighting */
.main-nav li.active > a {
    background-color: #ffd6e7; /* Light pink */
    color: #c21f5d;
}

/* Calendar table styles */
.calendar-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.calendar-table th, 
.calendar-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
    height: 40px;
}

.calendar-table th {
    background-color: #3e356d;
    color: white;
}

.calendar-table td {
    position: relative;
}

.calendar-table td.empty {
    background-color: #f8f9fa;
}

.event-indicator {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #c21f5d;
}

.calendar-table td:hover {
    background-color: #f0f0f0;
    cursor: pointer;
}

/* Month selector */
#month-selector {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #3e356d;
    background-color: white;
}

/* Mission/Vision sections */
.about-section h2 {
    color: #3e356d;
    border-bottom: 2px solid #c21f5d;
    padding-bottom: 0.5rem;
    margin-top: 2rem;
}

/* Leadership grid adjustments */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.leader-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.leader-card h3 {
    color: #3e356d;
    margin-top: 0;
    font-size: 1.1rem;
}

/* Remove donation-related styles */
/* (All donation-related CSS has been removed) */

/* Social icons adjustments */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
}