#meet925-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 20, 30, 0.45);
    backdrop-filter: blur(14px);
    z-index: 99998;
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
}

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

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

.meet925-modal {
    pointer-events: all;
    width: 700px;
    max-width: 92vw;
    max-height: 88vh;
    overflow: hidden;

    display: flex;
    flex-direction: column;

    border-radius: 32px;
    padding: 42px;

    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(24px);

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

    box-shadow:
        20px 20px 50px rgba(0,0,0,0.25),
        -8px -8px 24px rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
}

.meet925-modal.large {
    width: 1300px;
    max-width: 96vw;
    max-height: 92vh;
}

.meet925-card {
    color: white;
}

#meet925-close-btn {
    position: absolute;
    top: 20px;
    right: 24px;
    border: none;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
    color: white;
}

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

.meet925-card label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}
.meet925-card input {
    width: 100%;
    box-sizing: border-box;
    padding: 16px 18px;
    margin-bottom: 18px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.08);
    color: white;
    font-size: 15px;
    outline: none;
    backdrop-filter: blur(12px);
    transition: all 0.2s ease;
}
.meet925-checkbox input[type="checkbox"] {
padding:10px;
border-radius: 5px;
width:auto !important;
}
.meet925-card select {
    width: 100%;
    box-sizing: border-box;
    padding: 16px 18px;
    margin-bottom: 18px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.08);
    color: white;
    font-size: 15px;
    outline: none;
    backdrop-filter: blur(12px);
    transition: all 0.2s ease;
}
.meet925-card textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 16px 18px;
    margin-bottom: 18px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.08);
    color: white;
    font-size: 15px;
    outline: none;
    backdrop-filter: blur(12px);
    transition: all 0.2s ease;
}
.meet925-card input:focus,
.meet925-card select:focus,
.meet925-card textarea:focus {
    border-color: rgba(255,255,255,0.35);
    box-shadow: 0 0 0 4px rgba(255,255,255,0.08);
}
.meet925-card input::placeholder,
.meet925-card textarea::placeholder {
    color: rgba(255,255,255,0.45);
}
.meet925-card button,
.meet925-btn {
    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);
}
.meet925-card button:hover,
.meet925-btn:hover {
    transform: translateY(-1px);
    background: rgba(255,255,255,0.24);
}
#wizardFooter {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}
.meet925-card textarea {
    min-height: 140px;
    resize: vertical;
}
.meet925-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mt-20 { margin-top: 20px; }
.w-100 { width: 100%; }

.meet925-card .wizardProgress {
    margin-bottom: 20px;
}

#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.12);
    color: white;
}

.invite-chip button {
    min-width: auto;
    padding: 0;
    margin: 0;
    background: transparent;
}
.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 input,
.meet925-input-row select {
    flex: 1;
    margin-bottom: 0;
}
.meet925-input-row button {
    margin-bottom: 0;
    min-width: 160px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meet925-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}
#wizardHeader {
    flex-shrink: 0;
    margin-bottom: 24px;
}
#wizardContent {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
    padding-right: 6px;
}
#wizardFooter {
    flex-shrink: 0;
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

#wizardContent::-webkit-scrollbar {
    width: 8px;
}

#wizardContent::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.18);
    border-radius: 999px;
}
.workflow-toolbar {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}
.workflow-card {
    padding: 20px;
    border-radius: 22px;
    margin-bottom: 18px;
    background: rgba(255,255,255,0.08);
}
.workflow-type {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 14px;
    opacity: 0.7;
}
.meet925-modal.fullscreen {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 0;
    padding: 0;
}
.report-row {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px;
    margin-bottom:12px;
    border-radius:12px;
    background: #0002;
    border: solid thin #fff4
}
.reports-modal {
    color: #fff;
    overflow-y: scroll;
}
.reports-modal 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);
}
.answer-block {
    padding:16px;
    margin-bottom:16px;
    border-radius:12px;
    background:#fafafa;
}
.meeting-report-view {
    padding: 24px;
    max-height: 80vh;
    overflow-y: auto;
}
.report-answer-block {
    padding: 18px;
    margin-bottom: 16px;
    border-radius: 14px;
    border: solid thin #fff4
}
.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: 10px;
    border: solid thin #fff4;
    background: #0002;
}
.report-notes {
    padding: 18px;
    border-radius: 14px;
    border: solid thin #fff4;
    background: #0002;
}
.ai-summary-modal textarea,
.ai-summary-modal select {
    width: 100%;
    margin-top: 8px;
    margin-bottom: 18px;
}

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

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