/* Diyetisyencim — Panel
   AUDIT-001: .dyt-panel-wrap varsayılan FLUID (max-width yok).
   Geniş ekranda sidebar ile içerik arasında 280-600px boşluk yaratan
   720/1100px cap + ortalama kaldırıldı; veri sayfaları tam genişlikte.
   Tek sütun form sayfaları (profil, ayarlar) 'dyt-narrow' sınıfı alır. */
.dyt-panel-wrap {
    max-width: none;
    margin: 0;
    padding: 28px 24px 64px;
}

.dyt-panel-form {
    background: #fff;
    border: 1px solid #e4e7eb;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.dyt-panel-form h2 {
    margin: 0 0 20px;
    font-size: 22px;
    color: #1B5E20;
}

.dyt-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
}

.dyt-field {
    display: block;
    margin-bottom: 14px;
}

.dyt-field > span {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
}

.dyt-field input,
.dyt-field select,
.dyt-field textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    box-sizing: border-box;
    font-family: inherit;
}

.dyt-field input:focus,
.dyt-field select:focus,
.dyt-field textarea:focus {
    outline: none;
    border-color: #2E7D32;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.12);
}

.dyt-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dyt-chip {
    border: 1px solid #d1d5db;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 13px;
    cursor: pointer;
    background: #fff;
    transition: all 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dyt-chip:has(input:checked) {
    border-color: #2E7D32;
    background: #f0f7f0;
    color: #1B5E20;
}

.dyt-wh {
    border: 1px solid #e4e7eb;
    border-radius: 8px;
    padding: 8px 12px;
}

.dyt-wh-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 14px;
}

.dyt-wh-row:last-child {
    border-bottom: none;
}

.dyt-wh-day {
    width: 100px;
    font-weight: 500;
    color: #374151;
}

.dyt-wh-closed {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #6b7280;
    white-space: nowrap;
}

.dyt-wh-row input[type="time"] {
    padding: 6px 8px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
}

.dyt-check {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 14px;
    color: #374151;
    margin: 14px 0;
    cursor: pointer;
}

.dyt-btn {
    width: 100%;
    padding: 12px;
    background: #2E7D32;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.dyt-btn:hover {
    background: #1B5E20;
}

.dyt-clinic-code {
    margin-top: 16px;
    background: #f0f7f0;
    border: 1px solid #c8e6c9;
    border-radius: 10px;
    padding: 14px 16px;
}

.dyt-clinic-code code {
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 2px 8px;
    font-size: 15px;
    color: #1B5E20;
}

.dyt-hint {
    margin: 6px 0 0;
    font-size: 12px;
    color: #6b7280;
}

.dyt-alert {
    padding: 12px 14px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    background: #e8f5e9;
    border: 1px solid #c8e6c9;
    color: #1B5E20;
}

.dyt-alert-error {
    background: #fdecea;
    border: 1px solid #f5c6c2;
    color: #b3261e;
}

.dyt-alert-ok {
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    color: #1B5E20;
}

.dyt-btn-ok {
    background: #2E7D32;
}

.dyt-search-form {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.dyt-search-form input[type="text"],
.dyt-search-form select {
    flex: 1;
    padding: 9px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
}

.dyt-form-inline {
    display: flex;
    gap: 10px;
    align-items: end;
    flex-wrap: wrap;
}

.dyt-form-inline .dyt-field {
    flex: 1;
    min-width: 160px;
}

.dyt-form-inline .dyt-btn {
    width: auto;
}

.dyt-notif-item {
    background: #fff;
    border: 1px solid #e4e7eb;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 10px;
}

.dyt-notif-unread {
    border-left: 3px solid #2E7D32;
    background: #f6fbf6;
}

.dyt-notif-title {
    font-weight: 700;
    color: #212121;
    margin-bottom: 2px;
}

.dyt-notif-msg {
    font-size: 14px;
    color: #374151;
}

.dyt-notif-date {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 6px;
}

.dyt-list-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.dyt-list-head h2 {
    margin: 0;
    font-size: 22px;
    color: #1B5E20;
}

.dyt-btn-small {
    width: auto;
    padding: 8px 16px;
    font-size: 13px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.dyt-list-filter {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.dyt-list-filter input[type="search"],
.dyt-list-filter select {
    padding: 9px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    flex: 1;
}

.dyt-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #e4e7eb;
    border-radius: 12px;
    overflow: hidden;
    font-size: 14px;
}

.dyt-table th {
    background: #f0f7f0;
    text-align: left;
    padding: 10px 12px;
    color: #374151;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.dyt-table td {
    padding: 10px 12px;
    border-top: 1px solid #f3f4f6;
}

.dyt-table a {
    color: #2E7D32;
    font-weight: 600;
    text-decoration: none;
}

.dyt-empty {
    text-align: center;
    color: #6b7280;
    padding: 24px;
}

.dyt-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.dyt-badge-aktif {
    background: #e8f5e9;
    color: #1B5E20;
}

.dyt-badge-pasif {
    background: #fff3e0;
    color: #b26a00;
}

.dyt-badge-arsiv {
    background: #f3f4f6;
    color: #6b7280;
}

.dyt-back {
    display: inline-block;
    margin-bottom: 14px;
    color: #2E7D32;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.dyt-client-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.dyt-client-head h2 {
    margin: 0;
    font-size: 24px;
    color: #1B5E20;
}

.dyt-client-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    color: #6b7280;
    font-size: 13px;
    margin-bottom: 20px;
}

.dyt-anamnesis-form {
    margin-top: 20px;
}

/* ── Takvim ─────────────────────────────────────────────────── */
.dyt-cal-wrap {
    max-width: 1080px;
}

.dyt-cal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}

.dyt-cal-title {
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.dyt-btn-ghost {
    background: #fff;
    color: #2E7D32;
    border: 1px solid #2E7D32;
}

.dyt-btn-ghost:hover {
    background: #f0f7f0;
}

.dyt-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.dyt-day-col {
    background: #fff;
    border: 1px solid #e4e7eb;
    border-radius: 10px;
    overflow: hidden;
    min-height: 180px;
}

.dyt-day-today {
    border-color: #2E7D32;
    box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.15);
}

.dyt-day-head {
    padding: 8px 10px;
    background: #f0f7f0;
    border-bottom: 1px solid #e4e7eb;
    font-size: 12px;
    color: #374151;
    display: flex;
    justify-content: space-between;
}

.dyt-day-body {
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dyt-appt-card {
    display: block;
    border-radius: 8px;
    padding: 6px 8px;
    text-decoration: none;
    font-size: 12px;
    border-left: 3px solid #d1d5db;
    background: #f9fafb;
}

.dyt-appt-card:hover {
    background: #f0f7f0;
}

.dyt-appt-pending {
    border-left-color: #FFB300;
}

.dyt-appt-approved {
    border-left-color: #2E7D32;
}

.dyt-appt-rejected,
.dyt-appt-cancelled {
    opacity: 0.55;
    border-left-color: #b3261e;
}

.dyt-appt-completed {
    border-left-color: #6b7280;
}

.dyt-appt-time {
    font-weight: 700;
    color: #1B5E20;
}

.dyt-appt-name {
    display: block;
    color: #212121;
    font-weight: 500;
    margin: 2px 0;
}

.dyt-appt-status {
    color: #6b7280;
    font-size: 11px;
}

.dyt-appt-detail {
    background: #fff;
    border: 1px solid #e4e7eb;
    border-radius: 12px;
    padding: 24px;
}

.dyt-appt-note {
    margin: 12px 0;
    padding: 10px 12px;
    background: #f9fafb;
    border-radius: 8px;
    font-size: 14px;
    color: #374151;
}

.dyt-appt-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.dyt-btn-approved {
    background: #2E7D32;
}

.dyt-btn-rejected {
    background: #b3261e;
}

.dyt-btn-cancelled {
    background: #6b7280;
}

.dyt-btn-completed {
    background: #1B5E20;
}

/* ── Genel yardımcılar ──────────────────────────────────────── */
.dyt-section-title {
    margin: 24px 0 12px;
    font-size: 17px;
    color: #1B5E20;
}

.dyt-add-food {
    margin-bottom: 16px;
}

.dyt-add-food summary {
    cursor: pointer;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 8px;
}

.dyt-kpi-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}

.dyt-kpi {
    background: #fff;
    border: 1px solid #e4e7eb;
    border-radius: 10px;
    padding: 14px;
    text-align: center;
}

.dyt-kpi span {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 4px;
}

.dyt-kpi strong {
    font-size: 20px;
    color: #212121;
}

.dyt-cash-income {
    color: #1B5E20;
    font-weight: 700;
}

.dyt-cash-expense {
    color: #b3261e;
    font-weight: 700;
}

.dyt-program-summary {
    background: #f0f7f0;
    border-radius: 8px;
    padding: 10px 14px;
    margin: 12px 0;
    font-size: 14px;
    color: #374151;
}

.dyt-meal-block {
    background: #fff;
    border: 1px solid #e4e7eb;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 14px;
}

.dyt-meal-block h3 {
    margin: 0 0 10px;
    font-size: 16px;
    color: #1B5E20;
}

.dyt-meal-kcal {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.dyt-meal-add {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.dyt-meal-add select,
.dyt-meal-add input {
    padding: 8px 10px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 13px;
}

.dyt-chart {
    background: #fff;
    border: 1px solid #e4e7eb;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 16px;
}

.dyt-svg-chart {
    width: 100%;
    height: auto;
}

.dyt-goals {
    background: #fff;
    border: 1px solid #e4e7eb;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.dyt-goal-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #374151;
    margin-bottom: 10px;
}

.dyt-goal-bar {
    flex: 1;
    height: 8px;
    background: #e4e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.dyt-goal-fill {
    height: 100%;
    background: #2E7D32;
    border-radius: 4px;
}

.dyt-portal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 20px 0;
}

.dyt-portal-meal {
    border: 1px solid #e4e7eb;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 10px;
    background: #fff;
}

.dyt-portal-meal h4 {
    margin: 0 0 6px;
    color: #2E7D32;
    font-size: 14px;
}

.dyt-portal-meal ul {
    margin: 0 0 8px;
    padding-left: 18px;
    font-size: 13px;
    color: #374151;
}

.dyt-meal-log {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.dyt-log-active {
    background: #1B5E20;
    box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.3);
}

.dyt-paytr-wrap {
    max-width: 760px;
    margin: 24px auto;
    padding: 0 16px;
}

/* ── Dashboard ───────────────────────────────────────────────── */
.dyt-dash-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.dyt-dash-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #e4e7eb;
    border-radius: 12px;
    padding: 16px;
    text-decoration: none;
    color: #374151;
    font-weight: 600;
    font-size: 14px;
    transition: border-color 0.15s, background 0.15s;
}

.dyt-dash-link:hover {
    border-color: #2E7D32;
    background: #f0f7f0;
}

.dyt-dash-icon {
    font-size: 22px;
}

/* ── Dizin ───────────────────────────────────────────────────── */
.dyt-dir-wrap {
    max-width: 960px;
    margin: 32px auto;
    padding: 0 16px;
}

.dyt-dir-wrap h1 {
    color: #1B5E20;
    font-size: 26px;
    margin-bottom: 16px;
}

.dyt-dir-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px;
}

.dyt-dir-card {
    display: block;
    background: #fff;
    border: 1px solid #e4e7eb;
    border-radius: 12px;
    padding: 18px;
    text-decoration: none;
    color: #374151;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.dyt-dir-card:hover {
    border-color: #2E7D32;
    box-shadow: 0 4px 14px rgba(46, 125, 50, 0.12);
}

.dyt-dir-card h3 {
    margin: 0 0 4px;
    color: #1B5E20;
    font-size: 17px;
}

.dyt-dir-title {
    margin: 0 0 6px;
    color: #2E7D32;
    font-size: 14px;
}

.dyt-dir-city {
    margin: 0 0 10px;
    color: #6b7280;
    font-size: 13px;
}

.dyt-dir-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.dyt-dir-detail {
    background: #fff;
    border: 1px solid #e4e7eb;
    border-radius: 12px;
    padding: 24px;
}

.dyt-dir-detail h1 {
    margin: 0 0 4px;
}

.dyt-dir-contact p {
    margin: 6px 0;
    font-size: 14px;
}

.dyt-wh-detail {
    margin: 0;
    padding-left: 20px;
    font-size: 14px;
    color: #374151;
}

@media (max-width: 860px) {
    .dyt-cal-grid {
        grid-template-columns: 1fr;
    }
    .dyt-portal-grid,
    .dyt-kpi-row {
        grid-template-columns: 1fr;
    }
    .dyt-form-inline {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 560px) {
    .dyt-form-grid {
        grid-template-columns: 1fr;
    }
    .dyt-panel-form {
        padding: 20px;
    }
    .dyt-list-filter {
        flex-direction: column;
    }
}

/* ── Dashboard (S10) ───────────────────────────────────────────────── */
.dyt-badge-pending {
    background: #fff3cd;
    color: #8a6d1a;
}
.dyt-badge-approved {
    background: #e8f5e9;
    color: #1B5E20;
}
.dyt-badge-completed {
    background: #e3f2fd;
    color: #0d47a1;
}
.dyt-badge-rejected,
.dyt-badge-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.dyt-onboard-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    background: linear-gradient(120deg, #e8f5e9, #f1f8e9);
    border: 1px solid #c8e6c9;
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 20px;
}
.dyt-onboard-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.dyt-onboard-text strong {
    font-size: 15px;
    color: #1B5E20;
}
.dyt-onboard-text span {
    font-size: 13px;
    color: #4b5563;
}

.dyt-inline-form {
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
}

.dyt-dash-today {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 20px;
}
.dyt-dash-today h3 {
    margin: 0 0 12px;
    font-size: 16px;
    color: #111827;
}
.dyt-dash-today .dyt-table {
    width: 100%;
    border-collapse: collapse;
}
.dyt-dash-today .dyt-table th,
.dyt-dash-today .dyt-table td {
    text-align: left;
    padding: 10px 8px;
    border-bottom: 1px solid #f3f4f6;
    font-size: 14px;
}
.dyt-dash-today .dyt-table th {
    color: #6b7280;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* ── Danışan dosyası sekmeleri (S11) ──────────────────────────────── */
.dyt-tabs {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 20px;
    overflow-x: auto;
}
.dyt-tab {
    padding: 9px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}
.dyt-tab:hover { color: #2E7D32; }
.dyt-tab.active {
    color: #2E7D32;
    border-bottom-color: #2E7D32;
}
.dyt-tab-panel { min-height: 120px; }
.dyt-tab-panel h2 { font-size: 18px; margin: 0 0 14px; }

.dyt-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}
.dyt-summary-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px 18px;
}
.dyt-summary-card h3 {
    margin: 0 0 6px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #6b7280;
}
.dyt-summary-big { font-size: 24px; font-weight: 800; margin: 0; color: #111827; }
.dyt-summary-sub { font-size: 13px; color: #6b7280; }

.dyt-quick-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.dyt-table-wrap { overflow-x: auto; margin-bottom: 14px; }
.dyt-table-wrap .dyt-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}
.dyt-table-wrap .dyt-table th,
.dyt-table-wrap .dyt-table td {
    text-align: left;
    padding: 10px 10px;
    border-bottom: 1px solid #f3f4f6;
    font-size: 14px;
}
.dyt-table-wrap .dyt-table th {
    color: #6b7280;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.dyt-badge-active {
    background: #e8f5e9;
    color: #1B5E20;
}
.dyt-badge-draft {
    background: #f3f4f6;
    color: #6b7280;
}

/* ── Danışan silme (soft-delete, P1) ──────────────────────────────── */
.dyt-client-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.dyt-btn-danger {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}
.dyt-btn-danger:hover {
    background: #fecaca;
    color: #7f1d1d;
}

/* ── P3: Dizin breadcrumb + şehir bağlantıları ──────────────────── */
.dyt-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13px; color: #6b7280; margin-bottom: 14px; }
.dyt-breadcrumb a { color: #2E7D32; text-decoration: none; }
.dyt-breadcrumb a:hover { text-decoration: underline; }
.dyt-breadcrumb .dyt-bc-sep { color: #d1d5db; }
.dyt-breadcrumb .dyt-bc-current { color: #111827; font-weight: 600; }
.dyt-dir-cities { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.dyt-dir-cities a { padding: 5px 12px; border: 1px solid #e5e7eb; border-radius: 999px; font-size: 13px; color: #374151; text-decoration: none; background: #fff; }
.dyt-dir-cities a:hover { border-color: #2E7D32; color: #2E7D32; }
.dyt-dir-cities a[selected] { background: #2E7D32; border-color: #2E7D32; color: #fff; }

/* ── P4: Raporlar ───────────────────────────────────────────────── */
.dyt-period-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.dyt-period-tabs a, .dyt-settings-tabs a { padding: 6px 14px; border: 1px solid #e5e7eb; border-radius: 999px; font-size: 13px; color: #4b5563; text-decoration: none; background: #fff; }
.dyt-period-tabs a.active, .dyt-settings-tabs a.active { background: #2E7D32; border-color: #2E7D32; color: #fff; }
.dyt-kpi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin: 16px 0; }
.dyt-kpi { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 14px 16px; display: flex; flex-direction: column; gap: 4px; }
.dyt-kpi span { font-size: 12px; color: #6b7280; }
.dyt-kpi strong { font-size: 18px; color: #111827; }
.dyt-report-section { margin: 22px 0; }
.dyt-report-section h2, .dyt-report-card h2 { font-size: 15px; color: #111827; margin: 0 0 10px; }
.dyt-report-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; margin: 18px 0; }
.dyt-report-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 16px; }
.dyt-stat-line { margin: 6px 0; color: #4b5563; font-size: 14px; }
.dyt-bar-chart { display: flex; align-items: flex-end; gap: 12px; height: 130px; padding: 10px 4px 0; background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; overflow-x: auto; }
.dyt-bar-col { display: flex; flex-direction: column; align-items: center; justify-content: flex-end; gap: 6px; min-width: 46px; }
.dyt-bar-stack { display: flex; align-items: flex-end; gap: 2px; height: 100px; }
.dyt-bar { width: 18px; border-radius: 4px 4px 0 0; min-height: 2px; }
.dyt-bar-pos { background: #2E7D32; }
.dyt-bar-neg { background: #ef5350; border-radius: 0 0 4px 4px; align-self: flex-start; }
.dyt-bar-key { font-size: 11px; color: #6b7280; white-space: nowrap; }
.dyt-export-row { display: flex; gap: 8px; flex-wrap: wrap; }

/* ── P4: Ayarlar ───────────────────────────────────────────────── */
.dyt-settings-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin: 14px 0; }
.dyt-settings-body { max-width: 860px; }
.dyt-check-row { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid #f3f4f6; }
.dyt-staff-add { max-width: 420px; }
.dyt-inline-form { display: inline-flex; gap: 6px; align-items: center; }
.dyt-inline-form select, .dyt-inline-form input { padding: 5px 8px; border: 1px solid #d1d5db; border-radius: 8px; font-size: 13px; }
.dyt-muted { color: #6b7280; font-size: 12px; }

/* Yazdırma görünümü (rapor → PDF) */
@media print {
    body.dyt-app-page .dyt-sidebar, body.dyt-app-page .dyt-topbar, body.dyt-app-page .dyt-mobile-nav,
    .dyt-period-tabs, .dyt-export-row, .dyt-settings-tabs, .dyt-btn { display: none !important; }
    body.dyt-app-page .dyt-main { margin: 0 !important; padding: 0 !important; }
    .dyt-kpi, .dyt-report-card { border: 1px solid #d1d5db; break-inside: avoid; }
}

/* ── P6: Portal bölümleri ───────────────────────────────────────── */
.dyt-portal-nav { margin: 14px 0 6px; }
.dyt-portal-section { margin: 22px 0; padding-top: 8px; border-top: 1px solid #f3f4f6; scroll-margin-top: 70px; }
.dyt-adherence-head { display: flex; flex-wrap: wrap; gap: 10px; align-items: baseline; margin-bottom: 10px; }
.dyt-adherence-head strong { font-size: 18px; color: #111827; }
.dyt-adherence-bar { display: flex; gap: 10px; align-items: flex-end; background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 14px; overflow-x: auto; }
.dyt-adherence-bar .dyt-bar-col { min-width: 44px; }
.dyt-bar-track { width: 22px; height: 80px; background: #f3f4f6; border-radius: 6px; display: flex; align-items: flex-end; overflow: hidden; }
.dyt-bar-fill { width: 100%; background: #2E7D32; border-radius: 6px 6px 0 0; min-height: 2px; }
.dyt-bar-val { font-size: 11px; color: #374151; font-weight: 600; }
.dyt-note-list { display: flex; flex-direction: column; gap: 8px; }
.dyt-note-item { background: #fff; border: 1px solid #e5e7eb; border-left: 3px solid #2E7D32; border-radius: 10px; padding: 10px 14px; }
.dyt-note-item p { margin: 0 0 4px; color: #374151; line-height: 1.5; }
.dyt-note-item .dyt-muted { font-size: 12px; }
.dyt-portal-note-box { padding: 14px; }
.dyt-portal-note-box textarea { width: 100%; min-height: 70px; border: 1px solid #d1d5db; border-radius: 8px; padding: 8px; font-size: 14px; }
.dyt-portal-note-box .dyt-btn { margin-top: 8px; }
.dyt-note-mini { margin-top: 12px; max-height: 260px; overflow-y: auto; }
.dyt-portal-pkgs { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px; }
.dyt-portal-pkg { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 14px; display: flex; flex-direction: column; gap: 6px; }
.dyt-portal-pkg strong { color: #111827; }
.dyt-portal-pkg span { color: #4b5563; font-size: 14px; }
.dyt-portal-pkg .dyt-btn { align-self: flex-start; }
@media print {
    .dyt-portal-nav { display: none; }
}

/* ── Hukuki sayfa iskeletleri (P14) ─────────────────────── */
.dyt-legal-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 1.5rem;
  background: var(--dyt-surface, #fff);
  border: 1px solid var(--dyt-border, #e5e7eb);
  border-radius: 12px;
  line-height: 1.6;
}
.dyt-legal-wrap h1 { font-size: 1.6rem; margin-bottom: 0.25rem; }
.dyt-legal-wrap h2 { font-size: 1.05rem; margin: 0 0 0.4rem; }
.dyt-legal-list { padding-left: 1.25rem; }
.dyt-legal-list li { margin-bottom: 1.25rem; }
.dyt-legal-list p { margin: 0; color: var(--dyt-text-muted, #4b5563); }

/* ==========================================================================
   Dark tema (UI-002) — dyt-panel.css bileşenleri için override
   Değişkenler dyt-app.css'te body.dyt-dark altında tanımlı.
   ========================================================================== */
body.dyt-dark .dyt-panel-wrap,
body.dyt-dark .dyt-panel-form,
body.dyt-dark .dyt-card,
body.dyt-dark .dyt-table,
body.dyt-dark .dyt-box,
body.dyt-dark .dyt-legal-wrap {
    background: var(--dyt-surface, #171b24);
    color: var(--dyt-text, #e6eaf2);
    border-color: var(--dyt-border, #2a3040);
}
body.dyt-dark .dyt-panel-form {
    background: var(--dyt-surface, #171b24);
    border-color: var(--dyt-border, #2a3040);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}
body.dyt-dark .dyt-panel-form h2,
body.dyt-dark .dyt-card h2,
body.dyt-dark .dyt-card h3,
body.dyt-dark .dyt-legal-wrap h1,
body.dyt-dark .dyt-legal-wrap h2 {
    color: var(--dyt-text, #e6eaf2);
}
body.dyt-dark .dyt-field > span,
body.dyt-dark .dyt-legal-list p,
body.dyt-dark .dyt-table th {
    color: var(--dyt-muted, #8b94a7);
}
body.dyt-dark .dyt-table {
    border-color: var(--dyt-border, #2a3040);
}
body.dyt-dark .dyt-table td {
    border-color: var(--dyt-border, #2a3040);
    color: var(--dyt-text, #e6eaf2);
}
body.dyt-dark .dyt-btn-ghost {
    background: var(--dyt-surface-2, #1d222e);
    color: var(--dyt-text, #e6eaf2);
    border-color: var(--dyt-border, #2a3040);
}
body.dyt-dark .dyt-legal-list p { color: var(--dyt-muted, #8b94a7); }

/* ==========================================================================
   wp-admin paneli (UI-003) — Genel Bakış / Süper Admin / Durum
   ========================================================================== */
.dyt-admin-wrap { max-width: 900px; }
.dyt-admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin: 20px 0;
}
.dyt-admin-grid .dyt-card {
    background: #fff;
    border: 1px solid #e4e7eb;
    border-radius: 12px;
    padding: 18px;
}
.dyt-admin-grid .dyt-card strong { display: block; color: #4b5563; font-size: 13px; }
.dyt-stat-num { font-size: 26px; font-weight: 700; color: #1B5E20; margin-top: 6px; }
body.dyt-dark .dyt-admin-grid .dyt-card {
    background: var(--dyt-surface, #171b24);
    border-color: var(--dyt-border, #2a3040);
}
body.dyt-dark .dyt-stat-num { color: var(--dyt-text, #e6eaf2); }

/* ==========================================================================
   Dark tema genişletmesi (AUDIT-004) — mevcut UI-002 bloğunun kapsamadığı
   bileşenler: kartlar, metinler, rozetler, input'lar, grafikler, onboarding.
   ========================================================================== */

/* Yüzeyler / kartlar */
body.dyt-dark .dyt-chip,
body.dyt-dark .dyt-appt-card,
body.dyt-dark .dyt-appt-detail,
body.dyt-dark .dyt-notif-item,
body.dyt-dark .dyt-meal-block,
body.dyt-dark .dyt-program-summary,
body.dyt-dark .dyt-summary-card,
body.dyt-dark .dyt-goals,
body.dyt-dark .dyt-chart,
body.dyt-dark .dyt-day-col,
body.dyt-dark .dyt-dir-card,
body.dyt-dark .dyt-dir-detail,
body.dyt-dark .dyt-dash-today,
body.dyt-dark .dyt-kpi,
body.dyt-dark .dyt-report-card,
body.dyt-dark .dyt-portal-meal,
body.dyt-dark .dyt-portal-pkg,
body.dyt-dark .dyt-note-item,
body.dyt-dark .dyt-bar-chart,
body.dyt-dark .dyt-adherence-bar,
body.dyt-dark .dyt-dash-link,
body.dyt-dark .dyt-wh {
    background: var(--dyt-surface, #171b24);
    border-color: var(--dyt-border, #2a3040);
}
body.dyt-dark .dyt-appt-card:hover,
body.dyt-dark .dyt-dash-link:hover { background: var(--dyt-surface-2, #1d222e); }
body.dyt-dark .dyt-chip:has(input:checked) {
    background: rgba(46, 125, 50, 0.18);
    border-color: #4caf50;
}
body.dyt-dark .dyt-appt-note,
body.dyt-dark .dyt-clinic-code code {
    background: var(--dyt-surface-2, #1d222e);
    border-color: var(--dyt-border, #2a3040);
    color: var(--dyt-text, #e6eaf2);
}
body.dyt-dark .dyt-clinic-code { color: var(--dyt-muted, #8b94a7); }

/* Metin renkleri */
body.dyt-dark .dyt-cal-title,
body.dyt-dark .dyt-goal-row,
body.dyt-dark .dyt-notif-msg,
body.dyt-dark .dyt-dash-today h3,
body.dyt-dark .dyt-portal-meal ul,
body.dyt-dark .dyt-portal-pkg strong,
body.dyt-dark .dyt-adherence-head strong,
body.dyt-dark .dyt-kpi strong,
body.dyt-dark .dyt-summary-big,
body.dyt-dark .dyt-report-section h2,
body.dyt-dark .dyt-report-card h2,
body.dyt-dark .dyt-breadcrumb .dyt-bc-current,
body.dyt-dark .dyt-note-item p,
body.dyt-dark .dyt-bar-val,
body.dyt-dark .dyt-wh-day {
    color: var(--dyt-text, #e6eaf2);
}
body.dyt-dark .dyt-kpi span,
body.dyt-dark .dyt-stat-line,
body.dyt-dark .dyt-portal-pkg span,
body.dyt-dark .dyt-onboard-text span,
body.dyt-dark .dyt-notif-date,
body.dyt-dark .dyt-appt-detail .dyt-muted,
body.dyt-dark .dyt-wh-row .dyt-muted {
    color: var(--dyt-muted, #8b94a7);
}
body.dyt-dark .dyt-onboard-text strong { color: #a5d6a7; }
body.dyt-dark .dyt-dir-cities a {
    background: var(--dyt-surface, #171b24);
    border-color: var(--dyt-border, #2a3040);
    color: var(--dyt-text, #e6eaf2);
}
body.dyt-dark .dyt-period-tabs a,
body.dyt-dark .dyt-settings-tabs a {
    background: var(--dyt-surface, #171b24);
    border-color: var(--dyt-border, #2a3040);
    color: var(--dyt-muted, #8b94a7);
}
body.dyt-dark .dyt-breadcrumb .dyt-bc-sep { color: var(--dyt-border, #2a3040); }

/* Rozetler (pastel → koyu tonlar) */
body.dyt-dark .dyt-badge-aktif,
body.dyt-dark .dyt-badge-approved,
body.dyt-dark .dyt-badge-active,
body.dyt-dark .dyt-alert-ok {
    background: rgba(46, 125, 50, 0.16);
    border-color: rgba(76, 175, 80, 0.35);
    color: #a5d6a7;
}
body.dyt-dark .dyt-alert {
    background: rgba(46, 125, 50, 0.16);
    border-color: rgba(76, 175, 80, 0.35);
    color: #a5d6a7;
}
body.dyt-dark .dyt-alert-error {
    background: rgba(220, 38, 38, 0.14);
    border-color: rgba(220, 38, 38, 0.35);
    color: #fca5a5;
}
body.dyt-dark .dyt-badge-pasif,
body.dyt-dark .dyt-badge-pending {
    background: rgba(245, 158, 11, 0.14);
    border-color: rgba(245, 158, 11, 0.35);
    color: #fcd34d;
}
body.dyt-dark .dyt-badge-arsiv,
body.dyt-dark .dyt-badge-draft {
    background: var(--dyt-surface-2, #1d222e);
    border-color: var(--dyt-border, #2a3040);
    color: var(--dyt-muted, #8b94a7);
}

/* Input'lar / seçiciler */
body.dyt-dark .dyt-field textarea,
body.dyt-dark .dyt-list-filter select,
body.dyt-dark .dyt-search-form select,
body.dyt-dark .dyt-meal-add input,
body.dyt-dark .dyt-inline-form select,
body.dyt-dark .dyt-inline-form input,
body.dyt-dark .dyt-wh-row input[type="time"],
body.dyt-dark .dyt-portal-note-box textarea {
    background: var(--dyt-surface-2, #1d222e);
    border-color: var(--dyt-border, #2a3040);
    color: var(--dyt-text, #e6eaf2);
}
body.dyt-dark .dyt-field textarea::placeholder,
body.dyt-dark .dyt-portal-note-box textarea::placeholder {
    color: var(--dyt-muted, #8b94a7);
}

/* Onboarding banner (yeşil gradient → koyu) */
body.dyt-dark .dyt-onboard-banner {
    background: linear-gradient(120deg, rgba(46, 125, 50, 0.22), rgba(76, 175, 80, 0.12));
    border-color: rgba(76, 175, 80, 0.35);
}

/* Grafik / ayırıcılar */
body.dyt-dark .dyt-bar-track { background: var(--dyt-surface-2, #1d222e); }
body.dyt-dark .dyt-goal-bar { background: var(--dyt-surface-2, #1d222e); }
body.dyt-dark .dyt-wh-row,
body.dyt-dark .dyt-portal-section,
body.dyt-dark .dyt-dash-today .dyt-table td,
body.dyt-dark .dyt-tabs {
    border-color: var(--dyt-border, #2a3040);
}
body.dyt-dark .dyt-day-head { background: rgba(46, 125, 50, 0.10); }

/* ── AUDIT-005: Danışan fotoğrafları (öncesi/sonrası) ──────────────── */
.dyt-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}
.dyt-photo-card {
    background: var(--dyt-surface, #fff);
    border: 1px solid var(--dyt-border, #e4e7eb);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.dyt-photo-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    background: #f0f0f0;
}
.dyt-photo-meta {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}
.dyt-photo-date { font-size: 12px; font-weight: 600; color: var(--dyt-text, #212121); }
.dyt-photo-note { font-size: 12px; color: var(--dyt-muted, #6b7280); }
.dyt-photo-consent { font-size: 11px; color: #2E7D32; }
.dyt-photo-delete { padding: 0 12px 12px; }
.dyt-photo-form { margin-top: 8px; }
.dyt-photo-note-field { flex: 2; }

/* ── AUDIT-006: Taksitler ──────────────────────────────────────────── */
.dyt-btn-warning {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fcd34d;
}
.dyt-btn-warning:hover { background: #fde68a; }
.dyt-row-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.dyt-inst-form { margin-top: 24px; }
.dyt-inst-note { flex: 2; }

/* ── AUDIT-007: Responsive son kontrol ────────────────────────────────
   Mobilde dyt-table-wrap'siz tablolar (kasa/cari/rapor/ürün/hediye/
   referans/bekleme) sayfa genişliğini taşırıyordu → blok + kendi kaydırma.
   dyt-table-wrap içindekiler eski davranışını korur (wrapper kaydırır). */
@media (max-width: 782px) {
    .dyt-table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
    .dyt-table-wrap .dyt-table {
        display: table;
        width: auto;
        white-space: normal;
    }
}

/* Mini ekran (≤480px): iç boşluklar ve başlık kompakt */
@media (max-width: 480px) {
    .dyt-panel-wrap,
    body.dyt-app-page.dyt-shell-user .dyt-panel-wrap {
        padding: 18px 12px 48px;
    }
    .dyt-page-head h1 { font-size: 20px; }
    .dyt-kpi-row { gap: 8px; }
    .dyt-photo-grid { grid-template-columns: repeat(2, 1fr); }
    .dyt-form-grid { gap: 8px; }
}

/* ── AUDIT-011: Dashboard chart (son 7 gün) ───────────────────────── */
.dyt-chart-card {
    background: var(--dyt-surface, #fff);
    border: 1px solid var(--dyt-border, #e5e7eb);
    border-radius: 12px;
    padding: 18px 20px;
    margin: 18px 0;
}
.dyt-chart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.dyt-chart-head h3 { margin: 0; font-size: 16px; color: var(--dyt-text, #111827); }
.dyt-chart-legend { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--dyt-muted, #6b7280); }
.dyt-chart-dot { width: 10px; height: 10px; border-radius: 3px; display: inline-block; margin-left: 6px; }
.dyt-dot-income { background: #2E7D32; }
.dyt-dot-expense { background: #dc2626; }
.dyt-dot-appts { background: #2563eb; }
.dyt-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 160px;
    padding-top: 8px;
}
.dyt-chart-col {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    height: 100%;
    border-radius: 6px;
    padding-bottom: 22px;
    position: relative;
}
.dyt-chart-col.dyt-chart-today { background: rgba(46, 125, 50, 0.06); }
.dyt-chart-bar {
    width: 22%;
    min-width: 6px;
    border-radius: 4px 4px 0 0;
    transition: height .2s ease;
}
.dyt-chart-income { background: #2E7D32; }
.dyt-chart-expense { background: #dc2626; }
.dyt-chart-appts { background: #2563eb; }
.dyt-chart-label {
    position: absolute;
    bottom: 2px;
    font-size: 11px;
    color: var(--dyt-muted, #6b7280);
}
.dyt-chart-empty-note { font-size: 12px; color: var(--dyt-muted, #9ca3af); margin: 10px 0 0; }
@media (max-width: 560px) {
    .dyt-chart { height: 120px; gap: 4px; }
    .dyt-chart-card { padding: 14px 12px; }
}
body.dyt-dark .dyt-chart-col.dyt-chart-today { background: rgba(46, 125, 50, 0.15); }

/* ── PLAN2-001: Su takibi ─────────────────────────────────────────── */
.dyt-water-block { display: flex; flex-direction: column; gap: 14px; }
.dyt-water-now { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.dyt-water-total { text-align: center; }
.dyt-water-total strong { display: block; font-size: 34px; font-weight: 800; color: #2563eb; line-height: 1.1; }
.dyt-water-total span { font-size: 12px; color: var(--dyt-muted, #6b7280); }
.dyt-water-track { flex: 1; min-width: 220px; }
.dyt-water-bar { height: 14px; background: var(--dyt-border, #e5e7eb); border-radius: 99px; overflow: hidden; }
.dyt-water-bar i { display: block; height: 100%; background: linear-gradient(90deg, #2563eb, #38bdf8); border-radius: 99px; transition: width .3s ease; }
.dyt-water-goal-label { margin-top: 6px; font-size: 12px; color: var(--dyt-muted, #6b7280); }
.dyt-water-quick { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.dyt-water-quick .dyt-field-label { font-size: 13px; color: var(--dyt-muted, #6b7280); }
.dyt-water-goal-form { display: flex; align-items: flex-end; gap: 10px; flex-wrap: wrap; }
.dyt-water-week { display: flex; gap: 8px; align-items: stretch; }
.dyt-water-day { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.dyt-water-day-label { font-size: 11px; color: var(--dyt-muted, #6b7280); }
.dyt-water-day-bar { height: 90px; width: 100%; max-width: 34px; background: var(--dyt-border, #eef2f7); border-radius: 8px; display: flex; align-items: flex-end; overflow: hidden; }
.dyt-water-day-bar i { display: block; width: 100%; background: #2563eb; border-radius: 8px; }
.dyt-water-day-val { font-size: 11px; color: var(--dyt-muted, #6b7280); }
@media (max-width: 560px) { .dyt-water-day-bar { height: 60px; } }

/* ── PLAN2-002: Alışveriş listesi ─────────────────────────────────── */
.dyt-portal-grocery { margin-top: 14px; border: 1px dashed var(--dyt-border, #d1d5db); border-radius: 10px; padding: 10px 12px; }
.dyt-portal-grocery summary { cursor: pointer; font-weight: 600; font-size: 14px; color: var(--dyt-text, #111827); }
.dyt-grocery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; margin-top: 10px; }
.dyt-grocery-mini h5 { margin: 0 0 4px; font-size: 12px; text-transform: uppercase; letter-spacing: .03em; color: #2E7D32; }
.dyt-grocery-mini ul { list-style: none; margin: 0; padding: 0; }
.dyt-grocery-mini li { display: flex; justify-content: space-between; gap: 8px; font-size: 13px; padding: 2px 0; color: var(--dyt-text, #111827); }
.dyt-grocery-mini li em { color: var(--dyt-muted, #6b7280); font-style: normal; white-space: nowrap; }

/* ── PLAN2-003: Makro özeti ───────────────────────────────────────── */
.dyt-macro-card { margin: 16px 0; padding: 16px 18px; background: var(--dyt-surface, #fff); border: 1px solid var(--dyt-border, #e5e7eb); border-radius: 12px; }
.dyt-macro-card .dyt-card-title { margin: 0 0 10px; font-size: 15px; }
.dyt-macro-table td.dyt-macro-total { background: rgba(46, 125, 50, 0.06); }
.dyt-macro-target { margin-bottom: 10px; padding: 10px 12px; border-radius: 8px; font-size: 13px; }
.dyt-macro-target span { display: block; font-weight: 600; margin-bottom: 6px; }
.dyt-macro-target small { color: var(--dyt-muted, #6b7280); }
.dyt-macro-ok { background: rgba(46, 125, 50, 0.10); }
.dyt-macro-high { background: rgba(220, 38, 38, 0.10); }
.dyt-macro-low { background: rgba(234, 179, 8, 0.12); }
.dyt-macro-bar { height: 8px; background: var(--dyt-border, #e5e7eb); border-radius: 99px; overflow: hidden; margin-bottom: 6px; }
.dyt-macro-bar i { display: block; height: 100%; background: #2E7D32; border-radius: 99px; }
.dyt-macro-high .dyt-macro-bar i { background: #dc2626; }
