body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px;
    background: #f8f9fa;
    min-height: 100vh;
    margin: 0;
}

.container {
    max-width: 1000px;
    margin: auto;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

h1 {
    text-align: center;
    color: #333;
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 300;
}

h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #4f46e5;
    margin: 15px auto;
    border-radius: 2px;
}

/* Footer logo styling */
.footer-logo {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid #e2e8f0;
}

.bottom-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.bottom-logo:hover {
    opacity: 1;
}

/* New optimized layout structure */
.header-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .header-section,
    .footer-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

fieldset {
    margin-bottom: 25px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fafbfc;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

/* Specific fieldset styling for better hierarchy */
.company-info {
    border-left: 4px solid #3b82f6;
}

.invoice-info {
    border-left: 4px solid #8b5cf6;
}

fieldset.items-section {
    border-left: 4px solid #10b981;
}

.payment-info {
    border-left: 4px solid #f59e0b;
}

.notes-section {
    background: #f8fafc;
    border-style: dashed;
}

fieldset:hover {
    border-color: #4f46e5;
    background: white;
    box-shadow: 0 4px 16px rgba(79, 70, 229, 0.12);
    transform: translateY(-2px);
}

fieldset:focus-within {
    border-color: #4f46e5;
    background: white;
    box-shadow: 0 4px 16px rgba(79, 70, 229, 0.15);
    transform: translateY(-1px);
}

legend {
    padding: 0 15px;
    font-weight: 600;
    color: #4f46e5;
    font-size: 1.1em;
}

label {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 15px 0 8px;
    font-weight: 500;
    color: #495057;
    font-size: 0.95em;
}

input, textarea, select {
    width: calc(100% - 28px);
    padding: 16px 14px;
    margin-bottom: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95em;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
    min-height: 20px;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

input:hover, textarea:hover, select:hover {
    border-color: #adb5bd;
}

button {
    padding: 12px 20px;
    border: none;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    display: inline-block;
    min-width: 120px;
    text-align: center;
    font-weight: 500;
    font-size: 0.95em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

button:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
}

button:active {
    transform: translateY(0);
}

button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

#add-item,
.add-item-btn {
    background: #374151;
    margin-right: 10px;
}

#add-item:hover,
.add-item-btn:hover {
    background: #4b5563;
}

.remove-item {
    background: #ef4444;
}

.remove-item:hover {
    background: #dc2626;
}

#download-pdf {
    background: #4f46e5;
    margin-top: 30px;
    font-size: 20px;
    font-weight: 700;
    padding: 20px 40px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
    width: 100%;
    max-width: 300px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#download-pdf:hover {
    background: #4338ca;
    box-shadow: 0 12px 28px rgba(79, 70, 229, 0.4);
    transform: translateY(-2px);
}

.totals-section {
    margin-top: 40px;
    padding: 32px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 16px;
    border: 2px solid #4f46e5;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.15);
    transition: all 0.3s ease;
}

.totals-section:hover {
    box-shadow: 0 12px 35px rgba(79, 70, 229, 0.2);
    transform: translateY(-2px);
    border-color: #4338ca;
}

.totals-breakdown {
    max-width: 400px;
    margin: 0 auto;
}

.subtotal-row,
.tax-row,
.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    margin-bottom: 4px;
    border-radius: 8px;
    font-size: 1.1em;
}

.subtotal-row {
    background: rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(79, 70, 229, 0.2);
    margin-bottom: 8px;
}

.tax-row {
    background: rgba(255, 255, 255, 0.2);
    font-size: 1em;
    color: #374151;
}

.total-row {
    background: rgba(79, 70, 229, 0.1);
    border: 2px solid rgba(79, 70, 229, 0.3);
    font-weight: 700;
    font-size: 1.3em;
    margin-top: 12px;
    color: #1e40af;
}

.totals-breakdown .label {
    font-weight: 600;
    color: #374151;
}

.totals-breakdown .value {
    font-weight: 700;
    color: #1e40af;
    font-family: 'Courier New', monospace;
}

.total-row .label,
.total-row .value {
    color: #1e40af;
    font-weight: 700;
}

.tax-breakdown-empty {
    display: none;
}

.buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.profile-controls {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    margin-bottom: 20px;
    align-items: center;
}

.profile-controls select {
    min-width: 0;
}

.profile-controls button {
    background: #3b82f6;
    white-space: nowrap;
}

.profile-controls button:hover {
    background: #2563eb;
}

.template-controls {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    margin-bottom: 20px;
    align-items: center;
}

.template-controls select {
    min-width: 0;
}

.template-controls button {
    background: #10b981;
    white-space: nowrap;
}

.template-controls button:hover {
    background: #059669;
}

.invoice-nr-controls {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
}

.invoice-nr-controls input {
    margin-bottom: 0;
    min-width: 0;
}

.invoice-nr-controls button {
    background: #6b7280;
    white-space: nowrap;
    margin-bottom: 0;
}

.invoice-nr-controls button:hover {
    background: #4b5563;
}

#deleteProfile {
    background: #ef4444;
}

#deleteProfile:hover {
    background: #dc2626;
}


.testing-controls {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    display: none;
    animation: slideDown 0.3s ease-out;
}

.testing-controls.visible {
    display: block;
}

.testing-controls h3 {
    cursor: pointer;
    user-select: none;
}

.testing-controls h3::after {
    content: ' ▼';
    font-size: 0.8em;
    margin-left: 8px;
}

.testing-controls.collapsed h3::after {
    content: ' ▶';
}

/* Developer mode indicator */
.dev-mode-indicator {
    position: fixed;
    top: 10px;
    right: 10px;
    background: #10b981;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    z-index: 1001;
    display: none;
    animation: slideInRight 0.3s ease-out;
}

.dev-mode-indicator.visible {
    display: block;
}

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

/* Developer mode notification */
.dev-notification {
    position: fixed;
    top: 50px;
    right: 10px;
    background: #1f2937;
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    z-index: 1002;
    display: none;
    animation: slideInRight 0.3s ease-out;
    max-width: 250px;
}

.dev-notification.visible {
    display: block;
}

.testing-controls h3 {
    margin: 0 0 15px 0;
    color: #475569;
    font-weight: 600;
}

.testing-controls button {
    background: #0ea5e9;
    margin: 0 5px;
}

.testing-controls button:hover {
    background: #0284c7;
}

#clearAllData {
    background: #ef4444;
}

#clearAllData:hover {
    background: #dc2626;
}

#fillSampleInvoice {
    background: #f59e0b;
    color: #ffffff;
}

#fillSampleInvoice:hover {
    background: #d97706;
}

/* Form Validation Styles */
.field-error {
    border: 2px solid #dc3545 !important;
    background-color: #fff5f5;
}

.field-success {
    border: 2px solid #28a745 !important;
}

.error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 2px;
    margin-bottom: 8px;
    display: block;
}

.validation-summary {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: none;
}

.validation-summary h4 {
    margin: 0 0 10px 0;
    font-size: 14px;
}

.validation-summary ul {
    margin: 0;
    padding-left: 20px;
}

.auto-save-indicator {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.auto-save-indicator.show {
    opacity: 1;
}

.auto-save-indicator.saving {
    background: #ffc107;
    color: #212529;
}

.required-indicator {
    color: #dc3545;
    font-weight: bold;
}

/* Screen reader only text */
.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;
}

/* Improved focus indicators */
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid #4f46e5;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    fieldset {
        border-color: #000000;
    }
    
    button {
        border: 2px solid #000000;
    }
    
    input, textarea, select {
        border-color: #000000;
    }
}

/* Smooth form animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    animation: fadeInUp 0.6s ease-out;
}

fieldset {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

fieldset:nth-child(1) { animation-delay: 0.1s; }
fieldset:nth-child(2) { animation-delay: 0.2s; }
fieldset:nth-child(3) { animation-delay: 0.3s; }

/* Improved form feedback */
.form-success {
    background: #f0fdf4;
    border-color: #10b981;
    color: #065f46;
}

/* Enhanced button states */
button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Better field spacing in grid */
.row fieldset {
    height: fit-content;
}

/* Improved item layout */
.item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.2s ease;
}

.item:hover {
    border-color: #10b981;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
}

.item-description-full {
    margin-bottom: 20px;
}

.item-description-full input {
    margin-bottom: 0;
}

.item-details-grid {
    display: grid;
    grid-template-columns: 80px 1fr 80px 1fr;
    gap: 16px;
    align-items: end;
    margin-bottom: 20px;
}

.item-field {
    display: flex;
    flex-direction: column;
}

.item-field label {
    margin: 0 0 6px 0;
    font-size: 0.9em;
    font-weight: 500;
}

.item-field input {
    margin-bottom: 0;
    padding: 10px;
}

@media (max-width: 768px) {
    .item-details-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}

/* Tooltip System */
.help-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    border-radius: 2px;
    background: #94a3b8;
    color: white;
    font-size: 9px;
    font-weight: 700;
    border: none;
    cursor: help;
    margin-left: 4px;
    position: relative;
    vertical-align: middle;
    transition: all 0.2s ease;
    opacity: 0.7;
}

.help-trigger:hover,
.help-trigger:focus {
    background: #4f46e5;
    opacity: 1;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.2);
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: 140%;
    left: 50%;
    transform: translateX(-50%);
    background: #1e293b;
    color: white;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 320px;
    max-width: 400px;
    width: max-content;
    white-space: normal;
    text-align: left;
    line-height: 1.6;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.tooltip-content::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: #1e293b;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.tooltip:hover .tooltip-content,
.tooltip .help-trigger:focus + .tooltip-content {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
}

/* Enhanced tooltip positioning for different contexts */
.tooltip-left .tooltip-content {
    bottom: auto;
    left: auto;
    right: 110%;
    top: 50%;
    transform: translateY(-50%);
    min-width: 280px;
    max-width: 350px;
}

.tooltip-left .tooltip-content::before {
    top: 50%;
    left: 100%;
    right: auto;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: #1e293b;
    border-top-color: transparent;
}

.tooltip-left:hover .tooltip-content,
.tooltip-left .help-trigger:focus + .tooltip-content {
    transform: translateY(-50%) translateX(-4px);
}

/* Responsive tooltip adjustments */
@media (max-width: 768px) {
    .tooltip-content {
        min-width: 280px;
        max-width: 320px;
        font-size: 13px;
        padding: 14px 18px;
        left: 10px;
        right: 10px;
        transform: none;
        width: auto;
    }
    
    .tooltip-content::before {
        left: 30px;
        transform: none;
    }
}

/* Adjust tooltip positioning for different locations */
.tooltip-right .tooltip-content {
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 10px;
}

.tooltip-right .tooltip-content::after {
    top: 50%;
    left: -5px;
    margin-top: -5px;
    margin-left: 0;
    border-color: transparent #1f2937 transparent transparent;
}

/* Welcome Banner */
.welcome-banner {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 2px solid #3b82f6;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 30px;
    animation: slideDown 0.5s ease-out;
}

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

.welcome-content h3 {
    margin: 0 0 12px 0;
    color: #1e40af;
    font-size: 1.4em;
}

.welcome-content p {
    margin: 0 0 16px 0;
    color: #374151;
    font-size: 1.05em;
}

.welcome-content ul {
    margin: 0 0 20px 0;
    padding-left: 20px;
    color: #4b5563;
}

.welcome-content li {
    margin-bottom: 6px;
    line-height: 1.5;
}

.welcome-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.welcome-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95em;
}

.welcome-btn.primary {
    background: #3b82f6;
    color: white;
}

.welcome-btn.primary:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.welcome-btn.secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.welcome-btn.secondary:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

.welcome-btn.text {
    background: transparent;
    color: #6b7280;
    text-decoration: underline;
}

.welcome-btn.text:hover {
    color: #374151;
    transform: none;
    box-shadow: none;
}

.welcome-btn.danger {
    background: #ef4444;
    color: white;
}

.welcome-btn.danger:hover {
    background: #dc2626;
    transform: translateY(-1px);
}

/* Permanent Clear Data Button */
.clear-data-permanent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
    background: #6b7280;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(107, 114, 128, 0.3);
    flex-shrink: 0;
    line-height: 1;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    aspect-ratio: 1;
}

.clear-data-permanent:hover {
    background: #4b5563;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(107, 114, 128, 0.4);
}

.clear-data-permanent:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(107, 114, 128, 0.2);
}

/* Custom Notification System */
.custom-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 2000;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.custom-notification.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.notification-content {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    min-width: 320px;
    max-width: 480px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    backdrop-filter: blur(10px);
}

.notification-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    font-weight: bold;
}

.notification-icon.success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.notification-icon.success::before {
    content: '✓';
}

.notification-icon.warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.notification-icon.warning::before {
    content: '⚠';
}

.notification-icon.info {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.notification-icon.info::before {
    content: 'i';
}

.notification-icon.error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.notification-icon.error::before {
    content: '✕';
}

.notification-text {
    flex: 1;
    color: #374151;
    line-height: 1.6;
    font-size: 15px;
}

.notification-text h4 {
    margin: 0 0 8px 0;
    color: #1f2937;
    font-weight: 600;
    font-size: 16px;
}

.notification-text p {
    margin: 0;
    color: #6b7280;
}

.notification-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    color: #6b7280;
    transition: all 0.2s ease;
}

.notification-close:hover {
    background: #e5e7eb;
    color: #374151;
}

/* Notification backdrop */
.notification-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.notification-backdrop.show {
    opacity: 1;
    pointer-events: auto;
}

/* Keyboard shortcut styling */
kbd {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    padding: 2px 6px;
    font-family: monospace;
    font-size: 0.85em;
    color: #475569;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Form Progress Indicator */
.form-progress {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    padding: 24px;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    max-width: 150px;
}

.progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.progress-step.completed::after {
    background: #10b981;
}

.step-indicator {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.progress-step.active .step-indicator {
    background: #4f46e5;
    color: white;
    transform: scale(1.1);
}

.progress-step.completed .step-indicator {
    background: #10b981;
    color: white;
}

.step-label {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
    text-align: center;
    transition: color 0.3s ease;
}

.progress-step.active .step-label {
    color: #4f46e5;
    font-weight: 600;
}

.progress-step.completed .step-label {
    color: #10b981;
    font-weight: 600;
}
