.meetings-main {
    padding: 50px 40px;
    min-height: calc(100vh - 75px - 200px);
    background-color: #ffffff;
    color: #434656;
}

.meetings-container {
    max-width: 1200px;
    margin: 0 auto;
}

.meetings-header-section {
    margin-bottom: 40px;
    text-align: left;
}

.meetings-header-section h1 {
    font-size: 2.5rem;
    color: #203a6c;
    margin-bottom: 15px;
    font-weight: 700;
}

.meetings-subtext {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #434656;
    max-width: 950px;
}

.meetings-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.meeting-column {
    display: flex;
    flex-direction: column;
}

.meeting-column > h2 {
    font-size: 1.5rem;
    color: #203a6c;
    margin-bottom: 15px;
    font-weight: 600;
}

.meeting-card {
    background-color: #ffffff;
    border: 1px solid #e1e6ed;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.info-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 24px;
}

.meeting-type-block {
    background-color: #f8fafc;
    border: 1px solid #e1e6ed;
    border-radius: 8px;
    padding: 20px;
}

.meeting-type-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    border-bottom: 1px solid #e1e6ed;
    padding-bottom: 10px;
}

.meeting-type-header h3 {
    font-size: 1.15rem;
    color: #203a6c;
    margin: 0;
    font-weight: 700;
}

.meeting-badge {
    background-color: rgba(32, 58, 108, 0.1);
    color: #203a6c;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-card .meeting-details-list {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-card .meeting-details-list li {
    font-size: 0.92rem;
    color: #434656;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.info-card .meeting-details-list li i {
    color: #203a6c;
    margin-top: 3px;
    min-width: 14px;
}

.calendar-wrapper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    flex-grow: 1;
}

.calendar-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: none;
}

body.dark-mode .meetings-main {
    background-color: #121212;
    color: #ccd3de;
}

body.dark-mode .meetings-header-section h1 {
    color: #ffffff;
}

body.dark-mode .meetings-subtext {
    color: #8494ae;
}

body.dark-mode .meeting-column > h2 {
    color: #ffffff;
}

body.dark-mode .meeting-card {
    background-color: #1e1e1e;
    border-color: #384f75;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

body.dark-mode .meeting-type-block {
    background-color: #161616;
    border-color: #384f75;
}

body.dark-mode .meeting-type-header {
    border-bottom-color: #384f75;
}

body.dark-mode .meeting-type-header h3 {
    color: #ffffff;
}

body.dark-mode .meeting-badge {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ccd3de;
}

body.dark-mode .info-card .meeting-details-list li {
    color: #ccd3de;
}

body.dark-mode .info-card .meeting-details-list li i {
    color: #8494ae;
}

@media (max-width: 900px) {
    .meetings-content-grid {
        grid-template-columns: 1fr;
    }
    
    .meetings-main {
        padding: 30px 20px;
    }
}