#meetingRoom {
    position: fixed;
    inset: 0;
    background: #111;
    color: #fff !important;
}
#jitsiContainer {
    position: absolute;
    inset: 0;
}
#guidePanel {
    position: fixed;
    left: 50%;
    bottom: 80px;
    transform: translateX(-50%);

    width: 760px;
    max-width: 90vw;

    padding: 28px;
    border-radius: 28px;

    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,0.1);
}
#toggleGuideBtn {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
}
.guide-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 14px;
    opacity: 0.75;
    margin-bottom: 12px;
}
.workflow-type {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 18px;
}
.guide-text {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 24px;
}
#guideAnswerInput {
    width: 100%;
    min-height: 110px;
    padding: 18px 20px;
    margin-bottom: 24px;

    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;

    background: rgba(255,255,255,0.08);
    color: white;
    font-size: 16px;

    resize: vertical;
}
.guide-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}
.guide-actions button {
    padding: 14px 24px;
    min-width: 140px;

    border: none;
    border-radius: 16px;

    background: rgba(255,255,255,0.12);
    color: white;
    cursor: pointer;
}
#toggleGuideBtn {
    padding: 12px 22px;
    border-radius: 999px;

    background: rgba(255,255,255,0.12);
    color: white;
    border: none;
}
.guide-actions button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
#guidePanel {
    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}
#guidePanel.hidden {
    opacity: 0;
    transform:
        translateX(-50%)
        translateY(120px);
    pointer-events: none;
}
#toggleGuideBtn {
    transition: all 0.35s ease;
}
#toggleGuideBtn.guide-hidden {
    bottom: 50px;
}

.meet925-complete-modal {
    padding: 32px;
    color: white;
}

.meet925-complete-modal h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

#meetingNotesInput {
    width: 100%;
    min-height: 160px;
    margin: 20px 0;
    padding: 18px;
    border-radius: 18px;
    border: none;
    resize: vertical;
}
#jitsiContainer {
    position: fixed;
    inset: 0;
    z-index: 1;
}
#guidePanel {
    z-index: 20;
}
#toggleGuideBtn {
    z-index: 30;
}
.report-actions {
    display: flex;
    gap: 12px;
    margin: 20px 0;
    flex-wrap: wrap;
}
.report-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    padding: 20px;
    margin-bottom: 16px;
border: solid thin #fff4;
    border-radius: 18px;
    background: #0003;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}
.report-card-body {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
    flex-wrap: wrap;
}
.report-item {
    min-width: 140px;
}
.report-item.title {
    min-width: 220px;
    flex: 1;
}
.meeting-report-view {
    color: #fff;
}

.meeting-report-view button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    padding: 14px 24px;
    border: solid thin #fff;
    border-radius: 16px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.16);
    color: white;
    backdrop-filter: blur(12px);
    transition: all 0.2s ease;
    background-image: linear-gradient(0deg, #fff3, transparent, transparent, transparent, #0006);
}
