/* Committee public view styles */

.committee-header {
    border-bottom: 3px solid #dc3545;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
    width: 100%;
}

.committee-charge {
    background-color: #f8f9fa;
    border-left: 4px solid #dc3545;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    width: 100%;
}

.committee-title {
    color: #444;
    font-weight: 500;
}

/* Sidebar styles */
.menu-heading {
    color: #555;
    font-size: 1.75rem;
    font-weight: 500;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.menu-divider {
    border-top: 1px solid #ccc;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.committee-menu {
    margin-left: 0.5rem;
}

.committee-menu-item {
    margin-bottom: 1.5rem;
}

.committee-menu-item.active .committee-menu-link {
    color: #000;
    font-weight: 600;
}

.committee-menu-link {
    color: #666;
    font-size: 1.25rem;
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.committee-menu-link:hover {
    color: #000;
    text-decoration: none;
}

.committee-member-card {
    height: 100%;
}

.member-photo-container {
    width: 200px;
    height: 200px;
    overflow: hidden;
    position: relative;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
    margin-bottom: 1rem;
}

.member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%; /* Fix for head cutoff - position more toward the top */
}

.member-role {
    color: #dc3545;
    font-weight: 600;
}

.member-info {
    font-size: 0.9rem;
}

.member-term {
    color: #6c757d;
    font-size: 0.8rem;
}

.member-email {
    text-decoration: none;
}

.member-email:hover {
    text-decoration: underline;
}

.markdown-content h1,
.markdown-content h2,
.markdown-content h3,
.markdown-content h4 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.markdown-content ul,
.markdown-content ol {
    margin-bottom: 1rem;
}

.markdown-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

