/* Modal Styles */

/* YouTube Video Modal */
#videoModal {
    display: none;
}
#videoModal.active {
    display: flex;
}
#videoPlayer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}
#videoModal iframe {
    z-index: 10000;
}

/* General Modal Base Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    backdrop-filter: blur(10px);
}
.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal Container */
.modal-container {
    background: white;
    border-radius: 8px;
    max-width: 90vw;
    max-height: 90vh;
    overflow: auto;
    position: relative;
}

/* Modal Header */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #e5e5e5;
}

.modal-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
}

.modal-close:hover {
    background: #f5f5f5;
    border-radius: 4px;
}

/* Modal Content */
.modal-content {
    padding: 1rem;
}

/* Modal Overlay */
.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

/* Team Member Modal Specific Styles */
.team-member-details {
    text-align: center;
}

.team-member-image {
    max-width: 200px;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.position {
    font-weight: bold;
    color: #cb1a1a;
    margin-bottom: 0.5rem;
}

.bio {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.achievements {
    text-align: left;
}

.achievements h4 {
    margin-bottom: 0.5rem;
    color: #cb1a1a;
}

.achievements ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.achievements li {
    margin-bottom: 0.25rem;
} 