/* =========================
   OVERLAY
========================= */

#meet925-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 14, 30, 0.55);
    z-index: 99998;
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
}

#meet925-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* =========================
   MODAL ROOT
========================= */

#meet925-modal-root {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

/* =========================
   MODAL
========================= */

.meet925-modal {
    pointer-events: all;
    width: 600px;
    max-width: 94vw;
    max-height: 90vh;
    overflow: hidden;

    display: flex;
    flex-direction: column;

    border-radius: 12px !important;
    padding: 0 !important;

    background:
        linear-gradient(
            135deg,
            #2d2247 0%,
            #0006 100%
        );

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

    box-shadow:
        0 30px 80px rgba(0,0,0,0.45);
}

.meet925-modal.large {
    width: 1300px;
    max-width: 96vw;
    padding: 15px !important;
    box-sizing: border-box;
}

.meet925-modal.fullscreen {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 0;
}

/* =========================
   CARD CONTENT
========================= */

.meet925-card {
    color: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* =========================
   CLOSE BUTTON
========================= */

#meet925-close-btn {
    position: absolute;
    top: 20px;
    right: 24px;
    border: none;
    background: transparent;
    font-size: 28px;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
}

/* =========================
   TYPOGRAPHY
========================= */

.meet925-card h2,
.meet925-card h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: white;
}

.meet925-card label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.92);
}

/* =========================
   INPUTS
========================= */

.meet925-card input,
.meet925-card select,
.meet925-card textarea {
    width: 100%;
    box-sizing: border-box;

    padding: 15px 18px;
    margin-bottom: 18px;

    border-radius: 7px;
    border: none;

    background: #e8e8ec;
    color: #222;
    font-size: 15px;
    outline: none;
}

.meet925-card input::placeholder,
.meet925-card textarea::placeholder {
    color: #777;
}

.meet925-card input:focus,
.meet925-card select:focus,
.meet925-card textarea:focus {
    box-shadow: 0 0 0 3px rgba(120,167,255,0.35);
}

/* =========================
   TEXTAREA
========================= */

.meet925-card textarea {
    min-height: 140px;
    resize: vertical;
}

/* =========================
   CHECKBOX
========================= */

.meet925-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.meet925-checkbox input[type="checkbox"] {
    width: auto !important;
    margin: 0;
}

/* =========================
   BUTTONS
========================= */
#copyPromptBtn,
#generatePromptBtn,
.meeting-report-view button,
.reports-modal button,
.meet925-card button,
.meet925-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 140px;
    padding: 14px 24px;

    border: none;
    border-radius: 8px;

    cursor: pointer;
    font-size: 15px;
    font-weight: normal;

    color: #fff;

    background-image: linear-gradient(45deg, rgba(118, 70, 176, 0.6), rgb(182, 134, 240));

    transition: all 0.2s ease;
}
#copyPromptBtn,
#generatePromptBtn,
.meeting-report-view button,
.reports-modal button,
.meet925-card button:hover,
.meet925-btn:hover {
    

    background-image: linear-gradient(45deg, rgba(118, 70, 176, 0.6), rgb(110, 72, 155));

    transition: all 0.2s ease;
}
#copyPromptBtn,
#generatePromptBtn,
.meeting-report-view button,
.reports-modal button,
.meet925-card button:hover,
.meet925-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}
.ai-summary-modal {
    color: #fff;
}
.ai-summary-modal textarea, .ai-summary-modal select {
    width: 100%;
    margin-top: 8px;
    
    box-sizing: border-box;

    padding: 15px 18px;
    margin-bottom: 18px;

    border-radius: 7px;
    border: none;

    background: #e8e8ec;
    color: #222;
    font-size: 15px;
    outline: none;
}
/* =========================
   FOOTER
========================= */

#wizardFooter {
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

/* =========================
   INVITES
========================= */

#inviteChips {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.invite-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: white;
}

.invite-chip button {
    min-width: auto;
    padding: 0;
    margin: 0;
    background: transparent;
}

/* =========================
   INPUT ROW
========================= */

.meet925-input-row {
    display: flex;
    gap: 12px;
    align-items: stretch;
    margin-bottom: 18px;
}

.meet925-input-row input,
.meet925-input-row select {
    flex: 1;
    margin-bottom: 0;
}

.meet925-input-row button {
    min-width: 160px;
    height: 52px;
}

/* =========================
   WORKFLOW
========================= */

.workflow-toolbar {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.workflow-card {
    padding: 22px;
    border-radius: 12px;
    margin-bottom: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.workflow-type {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 14px;
    opacity: 0.7;
}

/* =========================
   REPORTS
========================= */

.reports-modal {
    color: white;
    overflow-y: auto;
}

.report-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;

    padding: 18px;
    margin-bottom: 14px;

    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.meeting-report-view {
    padding: 24px;
    max-height: 80vh;
    overflow-y: auto;
}

.report-answer-block,
.report-notes {
    padding: 18px;
    margin-bottom: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.05);
}

.report-step-type {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 8px;
}

.report-question {
    font-weight: bold;
    margin-bottom: 10px;
}

.report-answer {
    padding: 12px;
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
}

/* =========================
   UTILITIES
========================= */

.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mt-20 { margin-top: 20px; }
.w-100 { width: 100%; }

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
    .meet925-input-row {
        flex-direction: column;
    }

    .meet925-input-row button {
        width: 100%;
    }

    .report-row {
        flex-direction: column;
        align-items: flex-start;
    }
}