/* ==========================================================================
   CSS Custom Properties & Design Tokens
   ========================================================================== */
:root {
    /* Fonts */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Transition speeds */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    /* Shadow styles */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 20px rgba(79, 70, 229, 0.2);
}

/* Light Theme Variables */
.theme-light {
    --bg-app: #f4f6fc;
    --bg-surface: #ffffff;
    --bg-surface-glass: rgba(255, 255, 255, 0.8);
    --border-color: #e2e8f0;
    --border-color-focus: #4f46e5;
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-white: #ffffff;

    --primary-color: #4f46e5;
    --primary-hover: #4338ca;
    --primary-light: #e0e7ff;
    
    --accent-color: #06b6d4;
    --accent-light: #ecfeff;
    
    --success-color: #10b981;
    --success-light: #d1fae5;
    
    --error-color: #ef4444;
    --error-light: #fee2e2;

    --chart-pi: #4f46e5;
    --chart-tax: #f59e0b;
    --chart-ins: #06b6d4;
    --chart-hoa: #10b981;

    --backdrop-blur: blur(12px);
    --input-bg: #f8fafc;
}

/* Dark Theme Variables */
.theme-dark {
    --bg-app: #080c14;
    --bg-surface: #111827;
    --bg-surface-glass: rgba(17, 24, 39, 0.8);
    --border-color: #1f2937;
    --border-color-focus: #6366f1;
    
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;
    --text-white: #ffffff;

    --primary-color: #6366f1;
    --primary-hover: #4f46e5;
    --primary-light: #1e1b4b;
    
    --accent-color: #22d3ee;
    --accent-light: #083344;
    
    --success-color: #34d399;
    --success-light: #064e3b;
    
    --error-color: #f87171;
    --error-light: #450a0a;

    --chart-pi: #6366f1;
    --chart-tax: #fbbf24;
    --chart-ins: #22d3ee;
    --chart-hoa: #34d399;

    --backdrop-blur: blur(16px);
    --input-bg: #1f2937;
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   Base Styles & Reset
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-app);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.25;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-hover);
}

/* Utilities */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-accent {
    color: var(--accent-color);
}

.text-success {
    color: var(--success-color);
}

/* ==========================================================================
   Header Component
   ========================================================================== */
.app-header {
    background-color: var(--bg-surface-glass);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    padding: 1rem 0;
}

.header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo svg {
    filter: drop-shadow(0 2px 8px rgba(79, 70, 229, 0.3));
}

.main-nav {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    font-weight: 600;
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background-color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
    background-color: var(--primary-light);
}

.theme-toggle-btn {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--transition-fast), color var(--transition-fast), transform 0.2s ease;
}

.theme-toggle-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: scale(1.05);
}

.theme-toggle-btn svg {
    transition: transform var(--transition-normal);
}

.theme-light .sun-icon {
    display: none;
}

.theme-dark .moon-icon {
    display: none;
}

/* ==========================================================================
   Main Layout & Calculator Grid
   ========================================================================== */
.main-layout {
    width: 90%;
    max-width: 1200px;
    margin: 2.5rem auto;
}

.hero-intro {
    text-align: center;
    margin-bottom: 2.5rem;
}

.hero-intro h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-intro p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: start;
}

/* Cards styling (Glassmorphism design) */
.calculator-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.calculator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

/* ==========================================================================
   Form Fields, Inputs & Overrides
   ========================================================================== */
.input-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.label-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.input-addon-left, .input-addon-right {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
}

/* Input Fields text styles */
input[type="number"], select.styled-select {
    width: 100%;
    padding: 0.85rem 1rem;
    background-color: var(--input-bg);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

input[type="number"]:focus, select.styled-select:focus {
    border-color: var(--border-color-focus);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
}

input[type="number"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background-color: var(--border-color);
}

/* Input Addon Layouts */
.input-with-addon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-addon input {
    padding-left: 2rem;
}

.input-group .label-wrapper {
    position: relative;
}

.input-group {
    position: relative;
}

/* Styling custom slider ranges */
.slider-group {
    margin-top: -0.5rem;
    margin-bottom: 0.5rem;
}

.slider-input {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: var(--radius-full);
    background: var(--border-color);
    outline: none;
    margin: 10px 0;
    cursor: pointer;
}

.slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: var(--radius-full);
    background: var(--primary-color);
    border: 3px solid var(--bg-surface);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: transform 0.1s ease, background-color var(--transition-fast);
}

.slider-input::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: var(--accent-color);
}

.slider-input::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: var(--radius-full);
    background: var(--primary-color);
    border: 3px solid var(--bg-surface);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: transform 0.1s ease, background-color var(--transition-fast);
}

.slider-input::-moz-range-thumb:hover {
    transform: scale(1.2);
    background: var(--accent-color);
}

/* ==========================================================================
   Advanced Accordion Design
   ========================================================================== */
.advanced-details {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background-color: var(--input-bg);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.advanced-details[open] {
    border-color: var(--primary-color);
}

.details-summary {
    padding: 1rem 1.25rem;
    font-weight: 700;
    color: var(--text-secondary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.details-summary::-webkit-details-marker {
    display: none;
}

.details-summary svg.chevron-icon {
    transition: transform var(--transition-normal);
    color: var(--text-muted);
}

.advanced-details[open] .details-summary svg.chevron-icon {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.details-content {
    padding: 0 1.25rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.25rem;
    background-color: var(--bg-surface);
}

/* ==========================================================================
   Results Component
   ========================================================================== */
.results-section {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    background-color: var(--bg-surface-glass);
}

.results-main {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(99, 102, 241, 0.03) 100%);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.results-subtitle {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.payment-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0.25rem 0;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.results-base-payment {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Chart and legend styling */
.visualization-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.chart-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
}

.chart-center-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    pointer-events: none;
    text-align: center;
}

.chart-legend {
    list-style: none;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.legend-item {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.25rem;
    justify-content: space-between;
}

.legend-dot {
    position: absolute;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.pi-color .legend-dot { background-color: var(--chart-pi); }
.tax-color .legend-dot { background-color: var(--chart-tax); }
.ins-color .legend-dot { background-color: var(--chart-ins); }
.hoa-color .legend-dot { background-color: var(--chart-hoa); }

.legend-label {
    margin-right: 0.5rem;
}

.legend-val {
    font-weight: 700;
    color: var(--text-primary);
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.highlight-card {
    background-color: var(--input-bg);
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hl-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

.hl-value {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
}

.payoff-date-card {
    grid-column: span 2;
    align-items: center;
    border: 1.5px dashed rgba(6, 182, 212, 0.3);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, transparent 100%);
}

.payoff-date-card .hl-value {
    font-size: 1.4rem;
}

/* Savings Banner */
.savings-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--success-light) 0%, rgba(16, 185, 129, 0.02) 100%);
    border: 1.5px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-md);
    padding: 1rem;
    animation: pulseGlow 2s infinite ease-in-out;
}

.savings-icon {
    font-size: 1.75rem;
}

.savings-title {
    font-weight: 700;
    color: var(--success-color);
    font-size: 0.95rem;
}

.savings-description {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 0 rgba(16, 185, 129, 0);
    }
    50% {
        box-shadow: 0 0 12px rgba(16, 185, 129, 0.15);
    }
}

/* ==========================================================================
   Buttons Setup
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    outline: none;
    transition: background-color var(--transition-fast), border-color var(--transition-fast), transform 0.15s ease;
    user-select: none;
}

.btn:active {
    transform: scale(0.98);
}

.btn-secondary {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: var(--input-bg);
}

.btn-icon {
    background: var(--input-bg);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.btn-icon:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-icon:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ==========================================================================
   Amortization Table Section
   ========================================================================== */
.amortization-container {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    box-shadow: var(--shadow-md);
    margin-top: 3rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-header h2 {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.table-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Toggle Switch Group */
.toggle-group {
    display: inline-flex;
    background-color: var(--input-bg);
    padding: 0.25rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.toggle-btn {
    background: none;
    border: none;
    padding: 0.5rem 1.25rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: calc(var(--radius-md) - 2px);
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

.toggle-btn:hover {
    color: var(--primary-color);
}

.toggle-btn.active {
    background-color: var(--bg-surface);
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

/* Table Responsive Elements */
.table-responsive {
    overflow-x: auto;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    max-height: 480px;
    position: relative;
}

.amortization-table {
    width: 100%;
    border-collapse: collapse;
    text-align: right;
    font-size: 0.9rem;
}

.amortization-table th, .amortization-table td {
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.amortization-table th {
    background-color: var(--input-bg);
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-weight: 700;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: inset 0 -1px 0 var(--border-color);
}

.amortization-table th:first-child, .amortization-table td:first-child {
    text-align: left;
    font-weight: 700;
}

.amortization-table tr:hover {
    background-color: rgba(99, 102, 241, 0.02);
}

/* Table Pagination Footer */
.table-footer-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 1rem;
}

.pagination-info {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pagination-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-number {
    font-size: 0.9rem;
    font-weight: 700;
    min-width: 32px;
    text-align: center;
}

/* ==========================================================================
   SEO FAQ / Guide Section
   ========================================================================== */
.faq-section {
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.faq-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-lead {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.faq-item {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 1.75rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-item p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.faq-item ul {
    margin-left: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.formula-box {
    background-color: var(--input-bg);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-family: monospace;
    font-size: 1rem;
    text-align: center;
    margin: 1rem 0;
    color: var(--text-primary);
}

/* ==========================================================================
   Footer Component
   ========================================================================== */
.app-footer {
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 2rem 0;
    margin-top: 6rem;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    grid-column: span 2;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */
@media (max-width: 968px) {
    .calculator-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 15px;
    }
    
    .header-container {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .main-nav {
        width: 100%;
        justify-content: space-between;
    }

    .nav-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.9rem;
    }

    .calculator-card {
        padding: 1.5rem;
    }

    .input-grid-2 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .payment-value {
        font-size: 2.25rem;
    }

    .chart-legend {
        grid-template-columns: 1fr;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .payoff-date-card {
        grid-column: span 1;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        grid-column: span 1;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .table-controls {
        width: 100%;
        justify-content: space-between;
    }
}
.donut-svg {
    width: 220px;
    height: 220px;
    display: block;
    transform: rotate(-90deg);
    transform-origin: center;
}

.donut-svg circle {
    transition: stroke-width 0.2s ease, stroke 0.3s ease;
}

.donut-svg circle[id^="circle-"]:hover {
    stroke-width: 10;
    cursor: pointer;
}

.chart-wrapper {
    min-height: 220px;
    position: relative;
}
