/* AAHS Reunion Video Viewer */

.aahs-reunion-viewer {
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.4fr);
    gap: 24px;
    align-items: start;
}

.aahs-rv-left {
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.aahs-rv-search-wrap {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    background: #f7f7f7;
}

.aahs-rv-filter-label {
    display: block;
    margin: 0 0 4px;
    font-size: 0.85em;
    font-weight: 600;
    color: #555;
}

.aahs-rv-reunion-filter,
.aahs-rv-search {
    width: 100%;
    box-sizing: border-box;
    padding: 8px 10px;
    margin-bottom: 10px;
}

.aahs-rv-search {
    margin-bottom: 0;
}

.aahs-rv-list {
    max-height: 650px;
    overflow-y: auto;
}

.aahs-rv-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
}

.aahs-rv-table th,
.aahs-rv-table td {
    padding: 3px 8px;
    border-bottom: 1px solid #eee;
    text-align: left;
    vertical-align: top;
}

.aahs-rv-table th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: #f7f7f7;
    font-weight: 600;
}

.aahs-rv-th-reunion {
    width: 60px;
}

.aahs-rv-th-start {
    width: 80px;
}

.aahs-rv-table tr.is-active {
    background: #f0f4f8;
}

.aahs-rv-list-reunion,
.aahs-rv-list-time {
    width: 1%;
    color: #555;
    white-space: nowrap;
}

.aahs-rv-name-link {
    display: inline;
    width: auto;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    font-weight: 500;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.aahs-rv-name-link:hover {
    text-decoration: underline;
}

.aahs-rv-current-name {
    margin-top: 0;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
}

.aahs-rv-youtube-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.aahs-rv-youtube-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.aahs-rv-video {
    width: 100%;
    max-width: 100%;
}

.aahs-rv-links {
    margin-top: 12px;
}

.aahs-rv-links-title {
    font-weight: 600;
    margin-bottom: 6px;
}

.aahs-rv-clip-link {
    display: inline-block;
    margin: 0 8px 8px 0;
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #f9f9f9;
    text-decoration: none;
}

.aahs-rv-note {
    font-size: 0.9em;
    margin-top: 6px;
    color: #555;
}

.aahs-rv-right {
    border: 1px solid black;
    padding: 10px;
    border-radius: 10px;
    background: #eee;
}

.aahs-rv-youtube-wrap.is-hidden,
.aahs-rv-video-controls.is-hidden,
.aahs-rv-edit-panel.is-hidden,
.aahs-rv-video.is-hidden {
    display: none;
}

@media (max-width: 800px) {
    .aahs-reunion-viewer {
        grid-template-columns: 1fr;
    }

    .aahs-rv-left {
        order: 2;
    }

    .aahs-rv-right {
        order: 1;
    }

    .aahs-rv-list {
        max-height: 320px;
    }

    .aahs-rv-current-name {
        font-size: 16px;
        line-height: 1.3;
    }
}

.aahs-rv-edit-wrap {
    margin-top: 10px;
}

.aahs-rv-edit-link {
    display: inline-block;
    font-size: 0.9em;
}

.aahs-rv-edit-panel {
    margin-top: 8px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
}

.aahs-rv-edit-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.aahs-rv-classmate-select {
    width: 100%;
}

.aahs-rv-edit-actions {
    margin-top: 8px;
}

.aahs-rv-edit-actions button {
    margin-right: 8px;
    padding: 5px 10px;
    cursor: pointer;
}

.aahs-rv-edit-status {
    font-size: 0.9em;
    color: #555;
}
