/* DrDulani LMS Public Styles */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

.ddlms-public-wrap { font-family: 'Nunito', sans-serif; }

/* FILTER BAR */
.ddlms-filter-bar {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 2px 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.ddlms-filter-bar::-webkit-scrollbar { display: none; }
.ddlms-filter-btn {
    padding: 10px 22px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.75);
    transition: all 0.25s;
    font-family: inherit;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
}
.ddlms-filter-btn:hover,
.ddlms-filter-btn.active {
    background: rgba(255,255,255,0.95);
    color: #004d40;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* COURSES GRID */
.ddlms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 1100px) { .ddlms-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px)  { .ddlms-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 480px)  { .ddlms-grid { grid-template-columns: 1fr; } }

.ddlms-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
    animation: fadeUp 0.4s ease both;
}
.ddlms-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 16px 40px rgba(0,0,0,0.16);
}
.ddlms-card.hidden { display: none; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Square image wrapper - 1:1 aspect ratio, full image visible */
.ddlms-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #e2e8f0;
}
.ddlms-card-img-sq {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    background-color: #f8fafc;
}
.ddlms-card-img-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #e2e8f0, #f8fafc);
}
.ddlms-card-badges {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.ddlms-card-badge {
    color: white;
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    white-space: nowrap;
}

.ddlms-card-body { padding: 14px 16px 16px; }

.ddlms-card-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #64748b;
    margin-bottom: 6px;
    font-weight: 600;
}

.ddlms-card-title {
    /* Explicit size to prevent theme h3 override */
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    margin: 0 0 6px !important;
    color: #1a1f2e !important;
    padding: 0 !important;
    border: none !important;
}

.ddlms-card-desc {
    font-size: 12px;
    color: #64748b;
    margin: 0 0 10px;
    line-height: 1.45;
}

.ddlms-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
}

.ddlms-price-label { font-size: 11px; color: #94a3b8; display: block; }
.ddlms-price-value { font-size: 15px; font-weight: 900; color: #f97316; }

.ddlms-start-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 16px;
    background: #1a1f2e;
    border: none;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    white-space: nowrap;
    letter-spacing: 0.3px;
}
.ddlms-start-btn:hover {
    background: #00695c;
    transform: scale(1.04);
}

/* ENROLLMENT MODAL */
.ddlms-modal-overlay-pub {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.ddlms-modal-pub {
    background: white;
    border-radius: 24px;
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 32px 80px rgba(0,0,0,0.4);
    animation: modalIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.ddlms-modal-pub-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 36px; height: 36px;
    border: none; background: #f1f5f9;
    border-radius: 50%; cursor: pointer;
    font-size: 16px; z-index: 1;
    display: flex; align-items: center; justify-content: center;
}
.ddlms-modal-pub-close:hover { background: #fee2e2; color: #dc2626; }

/* ENROLLMENT FORM */
.ddlms-enroll-form { font-family: 'Nunito', sans-serif; }

.ddlms-enroll-header {
    background: linear-gradient(135deg, #004d40, #00897b);
    padding: 28px 24px;
    border-radius: 24px 24px 0 0;
    color: white;
}
.ddlms-enroll-course-info { display: flex; align-items: center; gap: 16px; }
.ddlms-enroll-course-info img { width: 70px; height: 70px; border-radius: 12px; object-fit: cover; border: 2px solid rgba(255,255,255,0.3); }
.ddlms-enroll-course-info h2 { margin: 0 0 8px; font-size: 18px; font-weight: 800; }
.ddlms-monthly-badge { background: rgba(255,255,255,0.2); padding: 4px 12px; border-radius: 20px; font-size: 13px; font-weight: 700; }

.ddlms-enroll-section { padding: 20px 24px; border-bottom: 1px solid #f1f5f9; }
.ddlms-section-title { font-size: 15px; font-weight: 800; margin: 0 0 16px; color: #1a1f2e; }

.ddlms-enroll-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.ddlms-field { display: flex; flex-direction: column; gap: 5px; }
.ddlms-field-full { grid-column: 1 / -1; }
.ddlms-field label { font-size: 12px; font-weight: 700; color: #374151; }
.ddlms-pub-input {
    padding: 10px 14px; border: 2px solid #e2e8f0; border-radius: 10px;
    font-size: 14px; font-family: inherit; width: 100%; transition: border-color 0.2s;
}
.ddlms-pub-input:focus { outline: none; border-color: #00897b; box-shadow: 0 0 0 3px rgba(0,137,123,0.1); }

/* MONTHS */
.ddlms-months-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
    margin-bottom: 16px;
}

.ddlms-month-check { display: block; cursor: pointer; }
.ddlms-month-check input { display: none; }

.ddlms-month-box {
    display: flex; flex-direction: column; gap: 4px;
    padding: 12px 14px; border: 2px solid #e2e8f0; border-radius: 12px;
    font-size: 13px; transition: all 0.2s; background: white;
}
.ddlms-month-name { font-weight: 700; color: #1a1f2e; }
.ddlms-month-price { color: #00897b; font-weight: 600; font-size: 12px; }
.ddlms-month-paid { color: #16a34a; font-weight: 600; font-size: 12px; }

.ddlms-month-check input:checked + .ddlms-month-box {
    border-color: #00897b;
    background: #f0fdf9;
    box-shadow: 0 0 0 3px rgba(0,137,123,0.1);
}
.ddlms-month-check.already-paid .ddlms-month-box { opacity: 0.6; background: #f8fafc; cursor: not-allowed; }

/* YEARLY */
.ddlms-yearly-option { margin-top: 16px; padding: 16px; background: #f0fdf9; border-radius: 12px; border: 2px solid #86efac; }
.ddlms-yearly-label { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; cursor: pointer; color: #166534; }
.ddlms-yearly-label input[type=checkbox] { width: 18px; height: 18px; accent-color: #00897b; }
.ddlms-yearly-info { margin-top: 14px; }
.ddlms-yearly-calc { background: white; border-radius: 10px; overflow: hidden; border: 1px solid #d1fae5; }
.ddlms-calc-row { display: flex; justify-content: space-between; padding: 10px 16px; font-size: 13px; border-bottom: 1px solid #f1f5f9; }
.ddlms-calc-row:last-child { border-bottom: none; }
.ddlms-balance-row { background: #f0fdf9; font-weight: 800; font-size: 15px; color: #00897b; }

/* PRICE SUMMARY */
.ddlms-price-summary {
    margin: 0 24px 0;
    padding: 16px;
    background: #1a1f2e;
    border-radius: 12px;
    color: white;
}
.ddlms-summary-row { display: flex; justify-content: space-between; font-size: 14px; padding: 4px 0; }
.ddlms-summary-total { font-size: 18px; font-weight: 900; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.15); margin-top: 8px; }

/* BANKS */
.ddlms-banks-display { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.ddlms-bank-display-card {
    background: #f8fafc; border-radius: 14px; padding: 16px;
    border: 2px solid #e2e8f0;
}
.ddlms-bank-display-name { font-weight: 800; font-size: 15px; margin-bottom: 10px; color: #1a1f2e; }
.ddlms-bank-display-row { display: flex; align-items: center; gap: 10px; font-size: 13px; margin-bottom: 6px; color: #64748b; }
.ddlms-bank-display-row strong { color: #1a1f2e; }
.ddlms-acc-num { font-family: monospace; font-size: 15px; letter-spacing: 1px; }
.ddlms-copy-btn { padding: 4px 10px; background: white; border: 1px solid #d1d5db; border-radius: 6px; font-size: 11px; cursor: pointer; transition: all 0.2s; margin-left: auto; }
.ddlms-copy-btn:hover { background: #00897b; color: white; border-color: #00897b; }
.ddlms-copy-btn.copied { background: #16a34a; color: white; border-color: #16a34a; }

/* SLIP UPLOAD */
.ddlms-slip-upload { }
.ddlms-slip-upload label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 8px; color: #374151; }
.ddlms-upload-area {
    border: 2px dashed #d1d5db; border-radius: 12px; padding: 30px;
    text-align: center; cursor: pointer; transition: all 0.2s;
    font-size: 14px; color: #94a3b8; font-weight: 600;
}
.ddlms-upload-area:hover, .ddlms-upload-area.drag-over { border-color: #00897b; background: #f0fdf9; color: #00897b; }
.ddlms-slip-preview { padding: 12px; background: #f0fdf9; border-radius: 10px; border: 1px solid #86efac; font-size: 13px; color: #166534; font-weight: 600; }

/* ENROLL FOOTER */
.ddlms-enroll-footer { padding: 20px 24px; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.ddlms-pub-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 32px; border: none; border-radius: 50px; font-size: 15px;
    font-weight: 800; cursor: pointer; transition: all 0.2s; font-family: inherit;
    width: 100%; max-width: 360px;
}
.ddlms-pub-btn-primary { background: #00897b; color: white; }
.ddlms-pub-btn-primary:hover:not(:disabled) { background: #00695c; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,137,123,0.35); }
.ddlms-pub-btn-primary:disabled { opacity: 0.4; cursor: not-allowed; }
.ddlms-submit-note { font-size: 12px; color: #94a3b8; text-align: center; }

/* SPINNER */
.ddlms-pub-loading { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px 20px; gap: 16px; }
.ddlms-spinner { width: 40px; height: 40px; border: 4px solid #e2e8f0; border-top-color: #00897b; border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============== USER DASHBOARD ============== */
.ddlms-user-dashboard { font-family: 'Nunito', sans-serif; }

.ddlms-dash-hero {
    background: linear-gradient(135deg, #004d40 0%, #00695c 50%, #00897b 100%),
                var(--hero-bg) center/cover no-repeat;
    background-blend-mode: multiply;
    border-radius: 20px;
    padding: 40px 32px;
    color: white;
    margin-bottom: 24px;
}
.ddlms-dash-course-name { font-size: 22px; font-weight: 900; margin-bottom: 8px; }
.ddlms-dash-user-name { font-size: 16px; opacity: 0.8; margin-bottom: 20px; }

.ddlms-zoom-hero-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.3);
    color: white; padding: 12px 24px; border-radius: 50px; font-weight: 800;
    font-size: 15px; text-decoration: none; transition: all 0.2s; font-family: inherit;
    backdrop-filter: blur(8px);
}
.ddlms-zoom-hero-btn:hover { background: white; color: #004d40; }
.ddlms-zoom-hero-btn span { font-size: 12px; opacity: 0.8; font-weight: 600; }
.ddlms-zoom-locked { font-size: 14px; opacity: 0.7; }

/* COUNTDOWN */
.ddlms-countdown-section {
    background: white; border-radius: 18px; padding: 24px;
    text-align: center; box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    margin-bottom: 24px; border: 1px solid #f1f5f9;
}
.ddlms-countdown-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #00897b; margin-bottom: 4px; }
.ddlms-countdown-date { font-size: 14px; color: #64748b; margin-bottom: 16px; }
.ddlms-countdown {
    display: flex; align-items: center; justify-content: center; gap: 12px;
}
.ddlms-cd-block { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.ddlms-cd-num {
    display: flex; align-items: center; justify-content: center;
    width: 64px; height: 64px; background: #1a1f2e; color: white;
    font-size: 26px; font-weight: 900; border-radius: 14px;
}
.ddlms-cd-block span:last-child { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #94a3b8; }
.ddlms-cd-sep { font-size: 26px; font-weight: 900; color: #00897b; margin-bottom: 20px; }
.ddlms-live { color: #dc2626; font-weight: 900; font-size: 18px; animation: pulse 1s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }

/* LMS SECTION */
.ddlms-lms-section, .ddlms-history-section { margin-bottom: 24px; }
.ddlms-section-h { font-size: 18px; font-weight: 900; margin: 0 0 16px; color: #1a1f2e; }

.ddlms-lms-list { display: flex; flex-direction: column; gap: 10px; }
.ddlms-lms-item {
    background: white; border-radius: 14px; padding: 16px 20px;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); border: 2px solid #f1f5f9;
    transition: border-color 0.2s;
}
.ddlms-lms-item.unlocked { border-color: #86efac; }
.ddlms-lms-month { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ddlms-lms-month-name { font-weight: 800; font-size: 15px; color: #1a1f2e; }
.ddlms-current-tag { background: #00897b; color: white; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 10px; text-transform: uppercase; letter-spacing: 0.5px; }

.ddlms-lms-link-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: #004d40; color: white; padding: 10px 20px; border-radius: 50px;
    font-weight: 800; font-size: 13px; text-decoration: none; transition: all 0.2s;
    white-space: nowrap;
}
.ddlms-lms-link-btn:hover { background: #00695c; transform: scale(1.03); }

.ddlms-lms-locked {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; color: #94a3b8; flex-wrap: wrap; justify-content: flex-end;
}
.ddlms-lock-icon { font-size: 20px; }
.ddlms-pay-now-btn {
    background: #f97316; color: white; border: none; padding: 8px 16px;
    border-radius: 50px; font-weight: 800; font-size: 12px; cursor: pointer;
    transition: all 0.2s; font-family: inherit;
}
.ddlms-pay-now-btn:hover { background: #ea580c; transform: scale(1.05); }

/* HISTORY */
.ddlms-history-list { display: flex; flex-direction: column; gap: 8px; }
.ddlms-history-item {
    background: white; border-radius: 12px; padding: 14px 18px;
    display: flex; align-items: center; justify-content: space-between;
    box-shadow: 0 1px 6px rgba(0,0,0,0.05); border-left: 4px solid #e2e8f0;
}
.ddlms-history-item.status-verified { border-left-color: #16a34a; }
.ddlms-history-item.status-pending  { border-left-color: #d97706; }
.ddlms-history-item.status-rejected { border-left-color: #dc2626; }
.ddlms-history-left { display: flex; flex-direction: column; gap: 3px; }
.ddlms-history-date { font-size: 12px; color: #94a3b8; }
.ddlms-history-months { font-size: 14px; font-weight: 700; color: #1a1f2e; }
.ddlms-history-right { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.ddlms-history-amount { font-size: 16px; font-weight: 900; color: #1a1f2e; }
.ddlms-history-status { font-size: 11px; font-weight: 700; padding: 2px 10px; border-radius: 10px; }
.ddlms-history-status.status-verified { background: #dcfce7; color: #16a34a; }
.ddlms-history-status.status-pending  { background: #fef3c7; color: #d97706; }
.ddlms-history-status.status-rejected { background: #fee2e2; color: #dc2626; }

/* RESPONSIVE */
@media (max-width: 600px) {
    .ddlms-grid { grid-template-columns: 1fr; }
    .ddlms-enroll-grid { grid-template-columns: 1fr; }
    .ddlms-months-grid { grid-template-columns: repeat(2, 1fr); }
    .ddlms-dash-hero { padding: 24px 20px; border-radius: 16px; }
    .ddlms-cd-num { width: 52px; height: 52px; font-size: 20px; }
    .ddlms-lms-item { flex-direction: column; align-items: flex-start; }
    .ddlms-lms-locked { justify-content: flex-start; }
}

/* ======= UNIVERSAL DASHBOARD ADDITIONS ======= */

/* No-courses welcome screen */
.ddlms-no-courses { font-family: 'Nunito', sans-serif; }
.ddlms-dash-welcome-hero {
    background: linear-gradient(135deg, #004d40, #00897b);
    border-radius: 20px; padding: 48px 32px; text-align: center; color: white; margin-bottom: 28px;
}
.ddlms-dash-avatar { font-size: 56px; margin-bottom: 12px; }
.ddlms-dash-welcome-hero h2 { margin: 0 0 10px; font-size: 26px; font-weight: 900; }
.ddlms-dash-welcome-hero p  { margin: 0 0 24px; opacity: 0.85; font-size: 15px; }
.ddlms-pub-btn-inline {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.2); border: 2px solid rgba(255,255,255,0.4);
    color: white; padding: 11px 26px; border-radius: 50px; font-weight: 800;
    font-size: 14px; text-decoration: none; transition: all 0.2s; font-family: inherit;
}
.ddlms-pub-btn-inline:hover { background: white; color: #004d40; }

/* Available courses (shown when not enrolled) */
.ddlms-available-section h3 { font-size: 18px; font-weight: 900; margin: 0 0 16px; color: #1a1f2e; }
.ddlms-avail-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.ddlms-avail-card {
    background: white; border-radius: 14px; overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07); border: 1px solid #f1f5f9;
    transition: transform 0.2s, box-shadow 0.2s;
}
.ddlms-avail-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.ddlms-avail-img { height: 120px; background-size: cover; background-position: center; background-color: #e2e8f0; }
.ddlms-avail-body { padding: 14px 16px; }
.ddlms-avail-cat { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; color: #00897b; }
.ddlms-avail-body h4 { margin: 6px 0 8px; font-size: 14px; font-weight: 800; color: #1a1f2e; }
.ddlms-avail-price { margin: 0; font-size: 13px; font-weight: 700; color: #f97316; }

/* Course selector / tab strip */
.ddlms-course-selector {
    background: white; border-radius: 16px; padding: 16px 20px;
    margin-bottom: 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); border: 1px solid #f1f5f9;
}
.ddlms-cs-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: #94a3b8; margin-bottom: 12px; }
.ddlms-cs-tabs  { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.ddlms-cs-tabs::-webkit-scrollbar { display: none; }

.ddlms-cs-tab {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 16px; border: 2px solid #e2e8f0; border-radius: 50px;
    background: white; color: #64748b; font-size: 13px; font-weight: 700;
    cursor: pointer; transition: all 0.2s; white-space: nowrap; font-family: inherit;
    flex-shrink: 0;
}
.ddlms-cs-tab:hover { border-color: #00897b; color: #00897b; }
.ddlms-cs-tab.active {
    background: #004d40; border-color: #004d40; color: white;
    box-shadow: 0 4px 12px rgba(0,77,64,0.3);
}
.ddlms-cs-thumb {
    width: 30px; height: 30px; border-radius: 50%; background-size: cover;
    background-position: center; background-color: #e2e8f0; flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.3);
}
.ddlms-cs-tab-name { max-width: 160px; overflow: hidden; text-overflow: ellipsis; }

/* Course panels */
.ddlms-course-panel { display: none; }
.ddlms-course-panel.active { display: block; }

/* Zoom locked inside hero */
.ddlms-zoom-locked-hero {
    display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
    padding: 12px 18px; border-radius: 50px; font-size: 13px; font-weight: 700;
    backdrop-filter: blur(6px);
}
.ddlms-pay-zoom-btn {
    background: #f97316; color: white; border: none; padding: 7px 16px;
    border-radius: 50px; font-weight: 800; font-size: 12px; cursor: pointer;
    transition: all 0.2s; font-family: inherit;
}
.ddlms-pay-zoom-btn:hover { background: #ea580c; transform: scale(1.05); }

@media (max-width: 600px) {
    .ddlms-cs-tab-name { max-width: 120px; }
    .ddlms-avail-grid  { grid-template-columns: repeat(2, 1fr); }
    .ddlms-dash-welcome-hero { padding: 32px 16px; }
}
