body {
    font-family: 'Arimo', 'Noto Sans KR', sans-serif;
    background-color: #f9fafb;
    color: #101828;
}

/* Main Content Styles */
.main {
    margin-left: 255.994px;
    padding: 23.991px;
    min-height: calc(100vh - 64.9px);
    flex: 1;
    transition: all 0.3s ease;
}

.page-header {
    margin-bottom: 23.991px;
}

.page-title {
    font-size: 30px;
    font-weight: 700;
    color: #101828;
    margin-bottom: 7.997px;
}

.page-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #4a5565;
}

/* ===== Summary Stats Grid ===== */
.live-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}
.live-stat-card {
    background: white;
    border: 0.909px solid #e8ebf0;
    border-radius: 10px;
    padding: 17px 21px;
    height: 92px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}
.live-stat-label {
    font-size: 12px;
    color: #8b95a1;
    font-weight: 400;
    line-height: 1.4;
}
.live-stat-value {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

/* ===== Filter Row ===== */
.live-filter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    gap: 8px;
}
.live-filter-tabs {
    display: flex;
    align-items: center;
    gap: 4px;
}
.live-tab-btn {
    height: 36px;
    min-width: 54px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    background: none;
    color: #8b95a1;
    font-family: inherit;
    transition: background 0.15s;
}
.live-tab-btn.active {
    background: #1a2b4a;
    color: white;
}
.live-filter-right {
    display: flex;
    align-items: center;
    gap: 8px;
}
.live-filter-select {
    height: 36px;
    padding: 0 10px;
    border-radius: 8px;
    border: 0.909px solid #e8ebf0;
    font-size: 13px;
    color: #2a2a2a;
    background: white;
    cursor: pointer;
    font-family: inherit;
    outline: none;
}

/* ===== Search Bar ===== */
.live-search-bar {
    position: relative;
    margin-bottom: 20px;
}
.live-search-bar input {
    width: 100%;
    height: 40px;
    border: 0.909px solid #e8ebf0;
    border-radius: 8px;
    background: white;
    padding: 0 14px 0 38px;
    font-size: 13px;
    color: #2a2a2a;
    font-family: inherit;
    box-sizing: border-box;
    outline: none;
}
.live-search-bar input::placeholder { color: #8b95a1; }
.live-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    pointer-events: none;
}

/* ===== Card List ===== */
.live-card-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.live-card {
    background: white;
    border: 0.909px solid #e8ebf0;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(26,43,74,0.08);
    overflow: hidden;
}
.live-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 12px 24px;
}
.live-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 13px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    border: 0.909px solid;
}
.live-status-badge.confirmed {
    background: rgba(16,185,129,0.12);
    border-color: rgba(16,185,129,0.3);
    color: #10b981;
}
.live-status-badge.waiting {
    background: rgba(245,158,11,0.12);
    border-color: rgba(245,158,11,0.3);
    color: #f59e0b;
}
.live-status-badge.terminated {
    background: rgba(139,149,161,0.12);
    border-color: #e8ebf0;
    color: #8b95a1;
}
.live-status-badge.canceled {
    background: rgba(248, 150, 150, 0.12);
    border-color: #f83333;
    color: #ee0713;
}
.live-card-menu-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f4f5f7;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.live-card-menu-btn img { width: 16px; height: 16px; }

/* Card Menu Dropdown */
.card-menu-wrap {
    position: relative;
}
.card-menu-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    background: white;
    border: 0.909px solid #e8ebf0;
    border-radius: 8px;
    box-shadow: 0px 4px 12px 0px rgba(26,43,74,0.15);
    padding: 8.906px 0.909px 0.909px 0.909px;
    min-width: 140px;
    z-index: 100;
}
.card-menu-dropdown.active { display: block; }
.card-menu-item {
    display: block;
    width: 100%;
    height: 35.483px;
    padding: 0 0 0 15.99px;
    text-align: left;
    background: none;
    border: none;
    font-size: 13px;
    font-family: inherit;
    cursor: pointer;
    line-height: 19.5px;
    color: #2a2a2a;
    white-space: nowrap;
    box-sizing: border-box;
    border-radius: 6px;
    transition: background 0.15s;
}
.card-menu-item:hover { background: #f4f5f7; }
.card-menu-item.card-menu-cancel { color: #ef4444; }

/* Card body */
.live-card-body {
    display: flex;
    gap: 24px;
    padding: 0 24px 20px 24px;
    align-items: flex-start;
}
.live-card-info { flex: 1; min-width: 0; }
.live-instructor-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.live-instructor-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    background: #e8ebf0;
    flex-shrink: 0;
}
.live-instructor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.live-instructor-name {
    font-size: 14px;
    font-weight: 700;
    color: #1a2b4a;
    line-height: 21px;
}
.live-instructor-tag {
    display: inline-flex;
    align-items: center;
    background: #f4f5f7;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 11px;
    color: #8b95a1;
    line-height: 16.5px;
}
.live-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a2b4a;
    margin-bottom: 12px;
    line-height: 24px;
}
.live-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 0;
    margin-bottom: 12px;
}
.live-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #2a2a2a;
    line-height: 19.5px;
}
.live-meta-item img { width: 14px; height: 14px; flex-shrink: 0; }
.live-progress-wrap {
    background: #e8ebf0;
    border-radius: 2px;
    height: 4px;
    width: 200px;
    overflow: hidden;
    margin-bottom: 12px;
}
.live-progress-bar { height: 100%; border-radius: 2px; }
.live-price-row {
    font-size: 13px;
    color: #8b95a1;
    line-height: 19.5px;
}
.live-price-row strong {
    font-size: 14px;
    font-weight: 700;
    color: #1a2b4a;
    line-height: 21px;
}

/* Zoom Panel */
.live-zoom-panel {
    width: 220px;
    flex-shrink: 0;
    background: rgba(45,140,255,0.04);
    border: 0.909px solid rgba(45,140,255,0.2);
    border-radius: 12px;
    padding: 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.zoom-panel-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #2d8cff;
    line-height: 19.5px;
}
.zoom-panel-header img { width: 16px; height: 16px; flex-shrink: 0; }
.zoom-dday-badge {
    background: rgba(255,107,53,0.08);
    border-radius: 6px;
    padding: 5px 8px;
    font-size: 12px;
    font-weight: 700;
    color: #ff6b35;
    text-align: center;
}
.zoom-disabled-btn {
    background: #d0d5dd;
    opacity: 0.6;
    border: none;
    border-radius: 10px;
    height: 44px;
    width: 100%;
    font-size: 14px;
    font-weight: 700;
    color: white;
    cursor: not-allowed;
    font-family: inherit;
}
.zoom-primary-btn {
    background: #ff6b35;
    border: none;
    border-radius: 10px;
    height: 44px;
    width: 100%;
    font-size: 14px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 4px 12px rgba(255,107,53,0.3);
}
.zoom-divider {
    height: 1px;
    background: rgba(45,140,255,0.15);
    margin: 2px 0;
}
.zoom-url-row { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.zoom-url-input {
    flex: 1;
    width: 100%;
    height: 34px;
    border: 0.909px solid #e8ebf0;
    border-radius: 8px;
    background: white;
    padding: 4px 10px;
    font-size: 11px;
    color: #8b95a1;
    font-family: inherit;
    outline: none;
    min-width: 0;
}
.zoom-copy-btn {
    padding: 4px 12px;
    border: 0.909px solid #2d8cff;
    border-radius: 8px;
    background: white;
    font-size: 12px;
    color: #2d8cff;
    font-family: inherit;
    cursor: pointer;
    flex-shrink: 0;
}
.zoom-panel-message {
    font-size: 11px;
    color: #8b95a1;
    text-align: center;
    line-height: 16.5px;
    padding: 2px 0;
}

/* Card Footer */
.live-card-footer {
    border-top: 0.909px solid #f4f5f7;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 37px;
}
.live-detail-btn {
    font-size: 13px;
    font-weight: 500;
    color: #8b95a1;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
}
.live-review-btn {
    height: 34px;
    padding: 0 14px;
    background: rgba(255,107,53,0.1);
    border: 0.909px solid rgba(255,107,53,0.25);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #ff6b35;
    cursor: pointer;
    font-family: inherit;
}


/* ===== Review Modal ===== */
.review-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(13, 27, 46, 0.65);
    z-index: 1000;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 16px;
    box-sizing: border-box;
    overflow-y: auto;
}
.review-modal-overlay.active {
    display: flex;
}
.review-modal {
    background: white;
    border-radius: 20px;
    width: 520px;
    max-width: 100%;
    box-shadow: 0 24px 64px rgba(26,43,74,0.22);
    overflow: hidden;
    flex-shrink: 0;
}

/* Header */
.review-modal-header {
    background: linear-gradient(160.37deg, #1a2b4a 0%, #2a3f6f 100%);
    padding: 24px 28px;
    position: relative;
}
.review-modal-course-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.review-modal-thumb {
    width: 56px;
    height: 40px;
    border-radius: 6px;
    border: 0.909px solid rgba(255,255,255,0.2);
    object-fit: cover;
    flex-shrink: 0;
    background: #2a3f6f;
}
.review-modal-course-info { flex: 1; min-width: 0; }
.review-modal-type-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border-radius: 4px;
    padding: 1px 8px;
    font-size: 10px;
    font-weight: 400;
    color: white;
    line-height: 15px;
    margin-bottom: 4px;
}
.review-modal-course-name {
    font-size: 14px;
    font-weight: 700;
    color: white;
    line-height: 21px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.review-modal-instructor {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    line-height: 18px;
}
.review-modal-close {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-family: inherit;
    transition: background 0.15s;
}
.review-modal-close:hover { background: rgba(255,255,255,0.2); }
.review-modal-title {
    font-size: 20px;
    font-weight: 800;
    color: white;
    line-height: 30px;
    margin: 0 0 4px 0;
}
.review-modal-subtitle {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin: 0;
    line-height: 19.5px;
}

/* Body */
.review-modal-body {
    padding: 28px 28px 0 28px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.review-section-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a2b4a;
    margin: 0 0 16px 0;
    line-height: 21px;
}
.review-section-title .optional {
    font-size: 12px;
    font-weight: 400;
    color: #8b95a1;
    margin-left: 4px;
}

/* Big Stars */
.review-big-stars-box {
    border: 0.909px solid #e8ebf0;
    border-radius: 14px;
    padding: 21px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.review-big-stars {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}
.review-big-star-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.review-big-star {
    font-size: 48px;
    line-height: 1;
    color: #e8ebf0;
    cursor: pointer;
    transition: color 0.15s, transform 0.1s;
    user-select: none;
}
.review-big-star:hover,
.review-big-star.active { color: #f59e0b; }
.review-big-star:hover { transform: scale(1.1); }
.review-big-star-label {
    font-size: 11px;
    color: #b0b8c4;
    line-height: 16.5px;
}
.review-score-display {
    font-size: 40px;
    font-weight: 800;
    color: #d0d5dd;
    line-height: 60px;
    transition: color 0.2s;
}
.review-score-display.rated { color: #f59e0b; }

/* Small Stars (세부 평가) */
.review-detail-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.review-detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 36px;
}
.review-detail-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #2a2a2a;
    line-height: 19.5px;
}
.review-detail-label .emoji { font-size: 16px; }
.review-small-stars {
    display: flex;
    gap: 4px;
}
.review-small-star {
    font-size: 24px;
    line-height: 36px;
    color: #e8ebf0;
    cursor: pointer;
    transition: color 0.15s;
    user-select: none;
}
.review-small-star:hover,
.review-small-star.active { color: #f59e0b; }

/* Review Text Section */
.review-tip-box {
    background: rgba(255,107,53,0.06);
    border: 0.909px solid rgba(255,107,53,0.2);
    border-radius: 10px;
    padding: 13px 17px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 14px;
}
.review-tip-box .tip-emoji { font-size: 20px; flex-shrink: 0; line-height: 30px; }
.review-tip-title {
    font-size: 13px;
    font-weight: 700;
    color: #ff6b35;
    line-height: 19.5px;
    margin: 0 0 2px 0;
}
.review-tip-desc {
    font-size: 12px;
    color: #8b95a1;
    line-height: 19.2px;
    margin: 0;
}
.review-keyword-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}
.review-keyword-chip {
    height: 30px;
    padding: 0 12px;
    border-radius: 20px;
    border: 0.909px solid #e8ebf0;
    background: #f4f5f7;
    font-size: 12px;
    font-weight: 500;
    color: #2a2a2a;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s;
    line-height: 28px;
}
.review-keyword-chip:hover,
.review-keyword-chip.active {
    background: rgba(255,107,53,0.08);
    border-color: rgba(255,107,53,0.4);
    color: #ff6b35;
}
.review-textarea {
    width: 100%;
    height: 120px;
    background: #f8f9fa;
    border: 0.909px solid #e8ebf0;
    border-radius: 12px;
    padding: 16px;
    font-size: 14px;
    font-family: inherit;
    color: #2a2a2a;
    resize: none;
    box-sizing: border-box;
    line-height: 1.7;
    outline: none;
    transition: border-color 0.15s;
}
.review-textarea::placeholder { color: rgba(42,42,42,0.5); }
.review-textarea:focus { border-color: #1a2b4a; background: white; }
.review-char-count {
    text-align: right;
    font-size: 11px;
    color: #ef4444;
    line-height: 16.5px;
    margin-top: 4px;
}

/* Photo Upload */
.review-photo-upload {
    background: #f8f9fa;
    border: 0.909px dashed #d0d5dd;
    border-radius: 10px;
    padding: 0 17px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.review-photo-info {
    display: flex;
    align-items: center;
    gap: 10px;
}
.review-photo-emoji { font-size: 20px; }
.review-photo-label-main {
    font-size: 13px;
    font-weight: 500;
    color: #2a2a2a;
    line-height: 19.5px;
}
.review-photo-label-sub {
    font-size: 11px;
    color: #8b95a1;
    line-height: 16.5px;
}
.review-photo-btn {
    background: white;
    border: 0.909px solid #e8ebf0;
    border-radius: 7px;
    width: 74px;
    height: 32px;
    font-size: 12px;
    font-weight: 500;
    color: #2a2a2a;
    cursor: pointer;
    font-family: inherit;
    flex-shrink: 0;
}
.review-photo-btn:hover { background: #f4f5f7; }
.review-photo-input { display: none; }

/* Footer */
.review-modal-footer {
    background: #f8f9fb;
    border-top: 0.909px solid #e8ebf0;
    padding: 0 28px;
    height: 81px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
}
.review-footer-note {
    font-size: 12px;
    color: #8b95a1;
    line-height: 18px;
}
.review-footer-btns {
    display: flex;
    gap: 10px;
    align-items: center;
}
.review-cancel-btn {
    width: 70px;
    height: 44px;
    background: white;
    border: 0.909px solid #e8ebf0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #8b95a1;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s;
}
.review-cancel-btn:hover { background: #f4f5f7; }
.review-submit-btn {
    width: 108px;
    height: 44px;
    background: #d0d5dd;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    color: white;
    cursor: not-allowed;
    font-family: inherit;
    transition: background 0.15s;
}
.review-submit-btn.enabled {
    background: #ff6b35;
    box-shadow: 0 4px 12px rgba(255,107,53,0.3);
    cursor: pointer;
}
.review-submit-btn.enabled:hover { background: #e85e2a; }

/* ===== Review Success Modal ===== */
.review-success-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(13, 27, 46, 0.65);
    z-index: 1100;
    justify-content: center;
    align-items: center;
}
.review-success-overlay.active { display: flex; }
.review-success-modal {
    background: white;
    border-radius: 20px;
    width: 520px;
    max-width: calc(100% - 32px);
    box-shadow: 0 24px 64px rgba(26,43,74,0.22);
    padding: 48px 28px 44px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
}
.review-success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255,107,53,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ff6b35;
    margin-bottom: 20px;
    line-height: 1;
}
.review-success-title {
    font-size: 20px;
    font-weight: 800;
    color: #1a2b4a;
    line-height: 30px;
    margin: 0 0 12px 0;
}
.review-success-desc {
    font-size: 14px;
    color: #8b95a1;
    line-height: 22.4px;
    margin: 0 0 20px 0;
}
.review-success-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
}
.review-success-star {
    font-size: 24px;
    line-height: 36px;
}
.review-success-score-label {
    font-size: 14px;
    font-weight: 700;
    color: #ff6b35;
    line-height: 21px;
    margin-bottom: 32px;
}
.review-success-confirm-btn {
    width: 96px;
    height: 44px;
    background: #1a2b4a;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s;
}
.review-success-confirm-btn:hover { background: #253d6b; }

/* ===== Toast Popup ===== */
.toast-pop{
    position: fixed;
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    max-width: 630px;
    width: 30%;
    height: 60px;
    text-align: center;
    display: none;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.25);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0s 0.5s;
}
.toast-pop.show {
    display: flex;
    visibility: visible; 
    opacity: 1;
    transition: opacity 0.5s ease;
}
.toast-pop p{
    font-size: var(--fonth5);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .live-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .live-card-body {
        gap: 16px;
    }
    .live-zoom-panel {
        width: 200px;
    }
    .toast-pop {
        width: 55%;
    }
}

@media (max-width: 800px) {
    /* sidebar는 mypage.css에서 처리 */
    .live-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .live-filter-row {
        flex-wrap: wrap;
        gap: 10px;
    }
    .live-filter-tabs {
        flex-wrap: wrap;
        gap: 6px;
    }
    .live-card-body {
        flex-direction: column;
        gap: 16px;
    }
    .live-zoom-panel {
        width: 100%;
    }
    .live-meta-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .live-progress-wrap {
        width: 100%;
    }
    .live-card-footer {
        flex-wrap: wrap;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 22px;
    }
    .page-subtitle {
        font-size: 13px;
    }
    .live-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .live-stat-card {
        padding: 12px 14px;
        height: 80px;
    }
    .live-stat-value {
        font-size: 20px;
    }
    .live-tab-btn {
        height: 32px;
        min-width: 44px;
        padding: 0 8px;
        font-size: 12px;
    }
    .live-filter-select {
        height: 32px;
        font-size: 12px;
        padding: 0 8px;
    }
    .live-card-header {
        padding: 14px 16px 10px 16px;
    }
    .live-card-body {
        padding: 0 16px 16px 16px;
    }
    .live-card-footer {
        padding: 8px 16px;
    }
    .live-card-title {
        font-size: 14px;
    }
    .zoom-primary-btn,
    .zoom-disabled-btn {
        height: 40px;
        font-size: 13px;
    }
    .zoom-url-row {
        flex-direction: column;
        align-items: stretch;
    }
    .zoom-copy-btn {
        width: 100%;
    }
}