@import '../mixins';

#zmeet_zoom_reports {
    padding: 40px 20px;
    .tabs-wrapper {
       
        .tabs {
            margin-bottom: 20px;
            padding-bottom: 10px;
            display: flex;
            border-bottom: 0.5px solid rgba(193, 189, 189, 0.6196078431);
        }
    
        .tab-item {
            padding: 10px 30px;
            margin-right: 10px;
            cursor: pointer;
            font-weight: bold;
            color: #333;
            border: 1px solid #ddd;
            font-size: 16px;
            border-radius: 8px;
            transition: background-color 0.3s;
            background: rgba(183, 183, 183, 0.5098039216);
        }
    
        .tab-item:hover {
            background-color: #f5f5f5;
        }
    
        .tab-item.active {
            background-color: #2D8CFF;
            color: #fff;
        }
    
        .tab-content {
            margin-top: 20px;
        }
    
        .daily-report,
        .account-report {
            padding: 20px 0;
            .report-show-btn{
                padding: 10px 30px;
                margin-left: 10px;
                background-color: #2D8CFF;
                color: #fff;
                font-size: 16px;
                border-radius: 8px;
                cursor: pointer;
                border: none;
                outline: none;
                &:hover{
                    background: #0E00DC;
                }
                &:focus{
                    outline: none;
                    box-shadow: none;
                }
            }

            @include respond-to('medium') {
                .report-show-btn{
                    float: right;
                    margin-top: 20px;
                }
            }
        }
    }

    .zmeet-report-info{
        border-radius: 8px;
        border: 2px dashed rgba(151, 144, 144, 0.8117647059);
        padding: 2rem 4rem;
        margin-top: 2rem;
        .report-info-wrapper{
            p{ 
                font-size: 30px;
                text-align: center;
                color: #7a7a7a;
                font-weight: 400;
                line-height: 30px;
            }
        }
    }

    @include respond-to('medium') {
        .zmeet-report-info{
            padding: 2rem .6rem;
            .report-info-wrapper{
                p{ 
                    line-height: 30px;
                }
            }
        }
    }
    
}

// zoom_reports.scss



// ------ Action column (Daily & Account report tables) ------
th.zmeet-action-col,
td.zmeet-action-col {
    text-align: center;
    white-space: nowrap;
}

.zmeet-report-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 15px;
    background: linear-gradient(135deg, #2D8CFF, #1D6BE6);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    letter-spacing: 0.1px;

    svg { flex-shrink: 0; }

    &:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 14px rgba(120, 86, 251, 0.38);
    }

    &:active {
        transform: translateY(0);
        box-shadow: none;
    }

    &--locked {
        background: linear-gradient(135deg, #b0b0b0, #8a8a8a);
        opacity: 0.75;
        cursor: pointer;
        &:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.18);
            opacity: 0.9;
        }
    }
}

.zmeet-action-na {
    color: #d0d0e0;
    font-size: 16px;
}

// ------ Participant count clickable button ------
.zmeet-participant-count-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 175, 0, 0.08);
    border: none;
    cursor: pointer;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 15px;
    color: #00AF00;
    transition: all 0.2s ease;
    outline: none;
    &:hover {
        background: rgba(0, 175, 0, 0.18);
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0, 175, 0, 0.25);
    }
    .zmeet-participant-count-num { font-weight: 700; font-size: 15px; }
    .zmeet-participant-eye-icon  { opacity: 0.7; }
    &:hover .zmeet-participant-eye-icon { opacity: 1; }
}

.zmeet-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 30, 0.65);
    backdrop-filter: blur(4px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: zmeet-overlay-in 0.2s ease;
    @keyframes zmeet-overlay-in { from { opacity: 0; } to { opacity: 1; } }
}

.zmeet-participants-modal {
    background: #fff;
    border-radius: 16px;
    width: 96%;
    max-width: 960px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    animation: zmeet-modal-in 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    @keyframes zmeet-modal-in {
        from { opacity: 0; transform: scale(0.92) translateY(20px); }
        to   { opacity: 1; transform: scale(1) translateY(0); }
    }
    .zmeet-pm-header {
        display: flex; align-items: center; justify-content: space-between;
        padding: 20px 24px;
        background: linear-gradient(135deg, #2D8CFF 0%, #1D6BE6 100%);
        color: #fff; border-radius: 16px 16px 0 0; flex-shrink: 0;
    }
    .zmeet-pm-header-left { display: flex; align-items: center; gap: 14px; }
    .zmeet-pm-icon {
        width: 44px; height: 44px; background: rgba(255,255,255,0.18);
        border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
        svg { color: #fff; }
    }
    .zmeet-pm-title    { font-size: 18px; font-weight: 700; margin: 0; color: #fff; }
    .zmeet-pm-subtitle { font-size: 13px; color: rgba(255,255,255,0.75); margin: 2px 0 0; }
    .zmeet-pm-close {
        background: rgba(255,255,255,0.15); border: none; border-radius: 10px;
        width: 38px; height: 38px; cursor: pointer; display: flex; align-items: center; justify-content: center;
        color: #fff; transition: background 0.2s; flex-shrink: 0;
        &:hover { background: rgba(255,255,255,0.28); }
    }
    .zmeet-pm-stats {
        display: flex; align-items: center; padding: 14px 24px;
        background: #f8f7ff; border-bottom: 1px solid #ededf8; flex-shrink: 0;
    }
    .zmeet-pm-stat { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 0 20px; &:first-child { padding-left: 0; } }
    .zmeet-pm-stat-value   { font-size: 22px; font-weight: 700; color: #2D8CFF; line-height: 1; }
    .zmeet-pm-stat-label   { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap; }
    .zmeet-pm-stat-divider { width: 1px; height: 32px; background: #ddd; flex-shrink: 0; }
    .zmeet-pm-toolbar {
        display: flex; align-items: center; justify-content: space-between;
        padding: 14px 24px; border-bottom: 1px solid #f0f0f5; gap: 12px; flex-shrink: 0; flex-wrap: wrap;
    }
    .zmeet-pm-search-wrap  { position: relative; flex: 1; min-width: 200px; max-width: 380px; }
    .zmeet-pm-search-icon  { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: #aaa; pointer-events: none; }
    .zmeet-pm-search {
        width: 100%; padding: 9px 36px; border: 1.5px solid #e5e7eb; border-radius: 10px;
        font-size: 14px; outline: none; background: #fafafa; transition: border-color 0.2s; box-sizing: border-box;
        &:focus { border-color: #2D8CFF; box-shadow: 0 0 0 3px rgba(120,86,251,0.12); background: #fff; }
    }
    .zmeet-pm-search-clear {
        position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
        background: none; border: none; color: #aaa; cursor: pointer; font-size: 13px;
        &:hover { color: #555; }
    }
    .zmeet-pm-export-btn {
        display: inline-flex; align-items: center; gap: 7px; padding: 9px 18px;
        background: linear-gradient(135deg, #2D8CFF, #1D6BE6); color: #fff; border: none; border-radius: 10px;
        font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s; white-space: nowrap; flex-shrink: 0;
        &:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(120,86,251,0.4); }
    }
    .zmeet-pm-body {
        flex: 1; overflow-y: auto; min-height: 0;
        &::-webkit-scrollbar { width: 6px; }
        &::-webkit-scrollbar-track { background: #f5f5f5; }
        &::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }
    }
    .zmeet-pm-loading {
        display: flex; flex-direction: column; align-items: center; justify-content: center;
        padding: 60px 24px; gap: 16px; color: #888; font-size: 14px;
    }
    .zmeet-pm-spinner {
        width: 40px; height: 40px; border: 3px solid #ededf8; border-top-color: #2D8CFF;
        border-radius: 50%; animation: zmeet-spin 0.8s linear infinite;
    }
    @keyframes zmeet-spin { to { transform: rotate(360deg); } }
    .zmeet-pm-error {
        display: flex; flex-direction: column; align-items: center; text-align: center; padding: 48px 32px; gap: 10px;
        .zmeet-pm-error-icon { color: #ef5350; opacity: 0.7; }
        h3 { font-size: 17px; font-weight: 700; margin: 4px 0 0; color: #c62828; }
        p  { font-size: 14px; color: #888; max-width: 420px; margin: 0; line-height: 1.6; }
    }
    .zmeet-pm-retry-btn {
        margin-top: 8px; padding: 8px 20px; background: #ef5350; color: #fff;
        border: none; border-radius: 8px; cursor: pointer; font-size: 13px; font-weight: 600;
        &:hover { background: #d32f2f; }
    }
    .zmeet-pm-empty {
        display: flex; flex-direction: column; align-items: center; text-align: center; padding: 60px 32px; gap: 10px;
        .zmeet-pm-empty-icon { color: #c5c5d8; }
        h3 { font-size: 17px; font-weight: 600; color: #555; margin: 4px 0 0; }
        p  { font-size: 14px; color: #999; max-width: 320px; margin: 0; line-height: 1.6; }
        strong { color: #2D8CFF; }
    }
    .zmeet-pm-table-wrap { overflow-x: auto; }
    .zmeet-pm-table {
        width: 100%; border-collapse: collapse; font-size: 13.5px;
        th {
            background: #2D8CFF; color: #fff; padding: 12px 16px; text-align: left;
            font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap; border: none;
            &:first-child { width: 40px; text-align: center; }
        }
        tbody tr { border-bottom: 1px solid #f0f0f8; transition: background 0.15s; &:hover { background: #faf9ff; } &:last-child { border-bottom: none; } }
        td { padding: 12px 16px; vertical-align: middle; color: #333; border: none; }
        .zmeet-pm-td-num  { text-align: center; color: #aaa; font-size: 12px; width: 40px; }
        .zmeet-pm-td-time { white-space: nowrap; font-size: 12.5px; color: #666; }
    }
    .zmeet-pm-participant-cell { display: flex; align-items: center; gap: 10px; }
    .zmeet-pm-avatar {
        width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
        font-size: 12px; font-weight: 700; color: #fff; flex-shrink: 0;
    }
    .zmeet-pm-participant-info { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
    .zmeet-pm-name  { font-weight: 600; color: #2d2d48; font-size: 13.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .zmeet-pm-email { font-size: 12px; color: #888; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .zmeet-pm-topic-badge {
        display: inline-block; padding: 3px 10px; background: rgba(120,86,251,0.1);
        color: #2D8CFF; border-radius: 20px; font-size: 12px; font-weight: 500;
        white-space: nowrap; max-width: 200px; overflow: hidden; text-overflow: ellipsis;
    }
    .zmeet-pm-duration-badge {
        display: inline-block; padding: 3px 10px; background: rgba(16,185,129,0.1);
        color: #059669; border-radius: 20px; font-size: 12px; font-weight: 600; white-space: nowrap;
    }
    .zmeet-pm-na { color: #ccc; }
    .zmeet-pm-footer {
        display: flex; align-items: center; justify-content: space-between;
        padding: 12px 24px; border-top: 1px solid #f0f0f5; background: #fafafa; flex-shrink: 0; gap: 12px; flex-wrap: wrap;
    }
    .zmeet-pm-page-info  { font-size: 13px; color: #888; }
    .zmeet-pm-pagination { display: flex; gap: 4px; }
    .zmeet-pm-page-btn {
        min-width: 32px; height: 32px; padding: 0 8px; border: 1.5px solid #e5e7eb; border-radius: 8px;
        background: #fff; color: #555; font-size: 13px; cursor: pointer; transition: all 0.15s; font-weight: 500;
        display: flex; align-items: center; justify-content: center;
        &:hover:not(:disabled) { border-color: #2D8CFF; color: #2D8CFF; }
        &.active { background: #2D8CFF; border-color: #2D8CFF; color: #fff; }
        &:disabled { opacity: 0.35; cursor: not-allowed; }
    }
}
// ------ Per-Meeting Report Tab ------
.zmeet-pmt-wrap {
    padding: 24px 0;

    // ── Filter card ──
    .zmeet-pmt-filter-card {
        background: #fff;
        border: 1px solid #ededf8;
        border-radius: 16px;
        overflow: hidden;
        margin-bottom: 24px;
        box-shadow: 0 2px 12px rgba(120, 86, 251, 0.07);
    }

    .zmeet-pmt-filter-card-head {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 16px 22px;
        background: linear-gradient(135deg, #2D8CFF 0%, #1D6BE6 100%);
        color: #fff;
    }

    .zmeet-pmt-filter-head-icon {
        width: 38px; height: 38px;
        background: rgba(255,255,255,0.18);
        border-radius: 10px;
        display: flex; align-items: center; justify-content: center;
        flex-shrink: 0;
        svg { color: #fff; }
    }

    .zmeet-pmt-filter-head-title { font-size: 15px; font-weight: 700; color: #fff; }
    .zmeet-pmt-filter-head-sub   { font-size: 12px; color: rgba(255,255,255,0.72); margin-top: 1px; }

    .zmeet-pmt-filter-fields {
        display: flex;
        align-items: flex-end;
        flex-wrap: wrap;
        gap: 16px;
        padding: 20px 22px;
    }

    .zmeet-pmt-field {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .zmeet-pmt-label {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 11.5px;
        font-weight: 700;
        color: #666;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        svg { color: #2D8CFF; }
    }

    // react-datepicker wrapper — must not shift layout
    .react-datepicker-wrapper,
    .react-datepicker__input-container {
        display: block;
        width: 100%;
    }

    .zmeet-pmt-select,
    .zmeet-pmt-date {
        display: block;
        width: 100%;
        min-width: 200px;
        box-sizing: border-box;
        padding: 9px 12px;
        border: 1.5px solid #e5e7eb;
        border-radius: 9px;
        font-size: 13.5px;
        background: #fafafa;
        color: #333;
        outline: none;
        transition: border-color 0.2s, box-shadow 0.2s;
        &:focus { border-color: #2D8CFF; box-shadow: 0 0 0 3px rgba(120,86,251,0.1); background: #fff; }
    }

    .zmeet-pmt-search-btn {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 10px 22px;
        background: linear-gradient(135deg, #2D8CFF, #1D6BE6);
        color: #fff;
        border: none;
        border-radius: 10px;
        font-size: 13.5px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.2s;
        white-space: nowrap;
        height: 40px;
        letter-spacing: 0.2px;
        &:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(120,86,251,0.38); }
        &:disabled { opacity: 0.6; cursor: not-allowed; }
    }

    .zmeet-pmt-spinner {
        width: 14px; height: 14px;
        border: 2px solid rgba(255,255,255,0.35);
        border-top-color: #fff;
        border-radius: 50%;
        animation: zmeet-spin 0.75s linear infinite;
        display: inline-block;
        flex-shrink: 0;
    }

    // ── Error banner ──
    .zmeet-pmt-error-banner {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 20px;
        background: linear-gradient(135deg, #fff5f5, #fef2f2);
        border: 1px solid #fca5a5;
        border-radius: 12px;
        color: #b91c1c;
        margin-bottom: 20px;
        svg { flex-shrink: 0; margin-top: 1px; }
        strong { font-size: 14px; display: block; margin-bottom: 2px; }
        p { margin: 0; font-size: 13px; color: #e53e3e; }
    }

    // ── Summary pills ──
    .zmeet-pmt-summary {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 16px;
    }

    .zmeet-pmt-summary-pill {
        display: flex;
        align-items: center;
        gap: 7px;
        padding: 8px 16px;
        border-radius: 30px;
        border: 1.5px solid transparent;
    }

    .zmeet-pmt-pill-purple {
        background: rgba(120,86,251,0.08);
        border-color: rgba(120,86,251,0.2);
        .zmeet-pmt-pill-value { color: #2D8CFF; }
    }

    .zmeet-pmt-pill-green {
        background: rgba(0,175,0,0.07);
        border-color: rgba(0,175,0,0.18);
        .zmeet-pmt-pill-value { color: #00AF00; }
    }

    .zmeet-pmt-pill-value { font-size: 18px; font-weight: 800; line-height: 1; }
    .zmeet-pmt-pill-label { font-size: 12px; color: #777; font-weight: 500; }

    .zmeet-pmt-summary-arrow { color: #ccc; font-size: 18px; }

    .zmeet-pmt-summary-range {
        font-size: 12.5px;
        color: #999;
        background: #f5f4ff;
        padding: 5px 12px;
        border-radius: 20px;
        border: 1px solid #e8e4ff;
    }

    // In-summary search
    .zmeet-pmt-table-search-wrap {
        position: relative;
        margin-left: auto;
        display: flex;
        align-items: center;
        svg { position: absolute; left: 11px; color: #aaa; pointer-events: none; }
    }

    .zmeet-pmt-table-search {
        padding: 7px 32px 7px 32px;
        border: 1.5px solid #e5e7eb;
        border-radius: 20px;
        font-size: 13px;
        outline: none;
        background: #fafafa;
        width: 180px;
        transition: border-color 0.2s, width 0.3s;
        &:focus { border-color: #2D8CFF; width: 220px; background: #fff; }
    }

    .zmeet-pmt-search-clear {
        position: absolute;
        right: 9px;
        background: none; border: none; color: #aaa; cursor: pointer; font-size: 12px;
        &:hover { color: #555; }
    }

    // ── Meeting table ──
    .zmeet-pmt-table-card {
        border-radius: 14px;
        border: 1px solid #ededf8;
        overflow: hidden;
        box-shadow: 0 2px 16px rgba(120, 86, 251, 0.06);
    }

    .zmeet-pmt-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 13.5px;

        th {
            background: #2D8CFF;
            color: #fff;
            padding: 13px 16px;
            text-align: left;
            font-weight: 600;
            font-size: 11.5px;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            border: none;
            white-space: nowrap;
        }

        .zmeet-pmt-th-idx { width: 42px; text-align: center; }

        tbody tr {
            border-bottom: 1px solid #f0f0f8;
            transition: background 0.15s, transform 0.1s;
            &:hover { background: #faf9ff; }
            &:last-child { border-bottom: none; }
        }

        td { padding: 13px 16px; vertical-align: middle; color: #333; border: none; }
        .zmeet-pmt-td-idx  { text-align: center; color: #c5c5d8; font-size: 12px; }
        .zmeet-pmt-td-time { font-size: 12.5px; color: #666; white-space: nowrap; }
    }

    .zmeet-pmt-topic-cell {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .zmeet-pmt-topic-avatar {
        width: 32px; height: 32px;
        border-radius: 8px;
        display: flex; align-items: center; justify-content: center;
        font-size: 13px; font-weight: 800;
        color: #fff;
        flex-shrink: 0;
        letter-spacing: 0;
    }

    .zmeet-pmt-topic-name {
        font-weight: 600;
        color: #2d2d48;
        font-size: 13.5px;
    }

    .zmeet-pmt-code {
        display: inline-block;
        background: #f0eeff;
        color: #1D6BE6;
        padding: 3px 9px;
        border-radius: 6px;
        font-family: 'SFMono-Regular', Consolas, monospace;
        font-size: 11.5px;
        letter-spacing: 0.5px;
    }

    .zmeet-pmt-count-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 36px;
        padding: 4px 10px;
        background: rgba(0,175,0,0.08);
        color: #00AF00;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 800;
        border: 1px solid rgba(0,175,0,0.15);

        &.zmeet-pmt-badge-hot {
            background: rgba(239,68,68,0.08);
            color: #dc2626;
            border-color: rgba(239,68,68,0.2);
        }
    }

    .zmeet-pmt-view-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 7px 15px;
        background: linear-gradient(135deg, #2D8CFF, #1D6BE6);
        color: #fff;
        border: none;
        border-radius: 8px;
        font-size: 12.5px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.2s;
        white-space: nowrap;
        &:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(120,86,251,0.38); }
    }

    .zmeet-pmt-no-filter {
        text-align: center;
        color: #999;
        font-size: 14px;
        padding: 36px !important;
        strong { color: #2D8CFF; }
    }

    // ── Empty state ──
    .zmeet-pmt-empty-state {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 60px 32px;
        gap: 14px;

        h3 { font-size: 18px; font-weight: 700; color: #3d3d60; margin: 0; }
        p  { font-size: 14px; color: #999; max-width: 360px; margin: 0; line-height: 1.7; }
    }

    .zmeet-pmt-empty-rings {
        position: relative;
        width: 110px; height: 110px;
        display: flex; align-items: center; justify-content: center;
    }

    .zmeet-pmt-empty-ring {
        position: absolute;
        border-radius: 50%;
        border: 1.5px solid rgba(120, 86, 251, 0.15);

        &.r1 { width: 110px; height: 110px; }
        &.r2 { width: 80px;  height: 80px;  border-color: rgba(120, 86, 251, 0.22); }
        &.r3 { width: 54px;  height: 54px;  border-color: rgba(120, 86, 251, 0.3);  }
    }

    .zmeet-pmt-empty-icon-wrap {
        width: 44px; height: 44px;
        background: linear-gradient(135deg, #2D8CFF, #1D6BE6);
        border-radius: 12px;
        display: flex; align-items: center; justify-content: center;
        svg { color: #fff; }
        box-shadow: 0 4px 16px rgba(120, 86, 251, 0.35);
    }
}

.zmeet-pro-gate-wrapper {
    position: relative;

    .zmeet-pro-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0);
        backdrop-filter: blur(0px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 10;
        border-radius: 12px;
        opacity: 0;
        transition: all 0.3s ease;
        
        .pro-overlay-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease;

            .pro-overlay-title {
                font-weight: 700;
                font-size: 17px;
                color: #4300FF;
                margin-bottom: 4px;
            }
            .pro-overlay-desc {
                color: #666;
                font-size: 13px;
                text-align: center;
            }
            .zmeet-upgrade-btn {
                align-items: center;
                background-color: #fde68a;
                border-radius: 6px;
                box-shadow: 0 4px 12px rgba(180, 83, 9, .2);
                color: #b45309;
                cursor: pointer;
                display: flex;
                font-size: 14px;
                font-weight: 700;
                gap: 8px;
                padding: 10px 20px;
                text-decoration: none;
                transform: translateY(0);
                transition: all .2s ease;

                i {
                    font-size: 18px;
                    line-height: 1;
                }

                &:hover {
                    background-color: #fcd34d;
                    box-shadow: 0 6px 15px rgba(180, 83, 9, 0.3);
                    color: #92400e;
                    transform: translateY(-2px);
                }
            }
        }
    }

    &:hover {
        .zmeet-pro-overlay {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(4px);
            opacity: 1;

            .pro-overlay-content {
                opacity: 1;
                transform: translateY(0);
            }
        }
    }
}

