/**
 * W3A11Y AltText Styles
 * 
 * CSS styles for AltText functionality including bulk processing,
 * media modal buttons, and settings page components.
 * 
 * @package W3A11Y_Artisan
 * @since 1.1.0
 */

/* ===== SETTINGS PAGE STYLES ===== */

/* AltText Settings Section */
.w3a11y-settings-section .alttext-length-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.alttext-length-slider {
    flex: 1;
    min-width: 200px;
}

input#alttext_max_length {
    accent-color: var(--w3a11y-primary-color);
}

.alttext-length-display {
    width: 60px !important;
    text-align: center;
}

.alttext-length-label {
    color: #666;
    font-size: 13px;
}

.alttext-style-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 10px 0;
}

.alttext-style-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.alttext-style-option:hover {
    background-color: #f9f9f9;
    border-color: #0073aa;
}

.alttext-style-option input[type="radio"] {
    margin: 0;
}

.alttext-style-option input[type="radio"]:checked+span {
    font-weight: 600;
    color: #0073aa;
}

.alttext-style-option:has(input[type="radio"]:checked) {
    background-color: #e7f3ff;
    border-color: #0073aa;
}

.character-counter {
    margin-top: 5px;
    font-size: 12px;
    color: #666;
}

.character-counter #alttext-instructions-count {
    font-weight: 600;
}

/* ===== BULK PROCESSING PAGE STYLES ===== */

/* Page Wrapper */
.w3a11y-alttext-page .wrap {
    background: #f8fafc;
    margin-left: -20px;
    margin-right: -20px;
    padding: 1rem 1.5rem 2rem 1.5rem;
    min-height: 100vh;
}

/* Main Container */
.w3a11y-bulk-container {
    max-width: 64rem;
    margin: 0 auto;
}

/* Statistics Grid */
.w3a11y-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

/* Stat Cards */
.w3a11y-stat-card {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 0.5rem;
}

.w3a11y-stat-card.stat-total {
    background: rgba(59, 130, 246, 0.1);
}

.w3a11y-stat-card.stat-missing {
    background: rgba(239, 68, 68, 0.1);
}

.w3a11y-stat-card.stat-complete {
    background: rgba(34, 197, 94, 0.1);
}

.w3a11y-stat-card.stat-credits {
    background: rgba(99, 102, 241, 0.1);
}

.w3a11y-stat-icon {
    padding: 0.75rem;
    border-radius: 50%;
    margin-right: 1rem;
}

.stat-total .w3a11y-stat-icon {
    background: rgba(59, 130, 246, 0.2);
    color: #2563eb;
}

.stat-missing .w3a11y-stat-icon {
    background: rgba(239, 68, 68, 0.2);
    color: #dc2626;
}

.stat-complete .w3a11y-stat-icon {
    background: rgba(34, 197, 94, 0.2);
    color: #16a34a;
}

.stat-credits .w3a11y-stat-icon {
    background: rgba(99, 102, 241, 0.2);
    color: #4f46e5;
}

.w3a11y-stat-content {
    flex: 1;
}

.w3a11y-stat-label {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.w3a11y-stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e293b;
}

/* Form Sections */
.w3a11y-form-section {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
}

.w3a11y-section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.w3a11y-section-icon {
    color: #3b82f6;
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

.w3a11y-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.w3a11y-optional-badge {
    margin-left: 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
}

.w3a11y-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.w3a11y-form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.w3a11y-textarea,
.w3a11y-select,
.w3a11y-input {
    width: 100%;
    border-radius: 0.375rem;
    border: 1px solid #e2e8f0;
    background: white;
    color: #1e293b;
    padding: 0.5rem 0.75rem;
}

.w3a11y-textarea:focus,
.w3a11y-select:focus,
.w3a11y-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.w3a11y-textarea::placeholder,
.w3a11y-input::placeholder {
    color: #94a3b8;
}

.w3a11y-help-text {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 0.25rem;
    display: flex;
    align-items: flex-start;
}

.w3a11y-help-icon {
    font-size: 1rem;
    margin-right: 0.375rem;
    margin-top: 0.125rem;
}

.w3a11y-checkbox-group {
    margin-top: 1rem;
}

.w3a11y-checkbox-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.w3a11y-checkbox-item input {
    margin-top: 3px;
    margin-left: .3rem;
}

.w3a11y-checkbox {
    height: 1.25rem;
    width: 1.25rem;
    border-radius: 0.25rem;
    border: 1px solid #d1d5db;
    color: #3b82f6;
    margin-right: 0.75rem;
}

.w3a11y-checkbox:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.w3a11y-checkbox-label {
    font-size: 1rem;
    font-weight: 500;
    color: #1e293b;
    margin-left: .5rem;
}

.w3a11y-checkbox-description {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.25rem;
    margin-left: 2rem;
}

.w3a11y-generate-btn {
    background: #3b82f6;
    color: white;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    width: max-content;
    justify-self: flex-end;
}

.w3a11y-generate-btn:hover {
    background: #2563eb;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.w3a11y-btn-icon {
    margin-right: 0.5rem;
}

.w3a11y-progress-container {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.w3a11y-progress-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.w3a11y-progress-icon {
    color: #3b82f6;
    font-size: 2.5rem;
    margin-right: 0.75rem;
    animation: spin 2s linear infinite;
    width: auto;
    height: auto;
}

.w3a11y-progress-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.w3a11y-progress-description {
    color: #64748b;
    margin-bottom: 1.5rem;
    max-width: 24rem;
    margin-left: auto;
    margin-right: auto;
}

.w3a11y-progress-bar-container {
    max-width: 32rem;
    margin: 0 auto;
}

.w3a11y-progress-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.w3a11y-progress-stats-left {
    color: #64748b;
}

.w3a11y-progress-stats-right {
    color: #3b82f6;
    font-weight: 600;
}

.w3a11y-progress-bar-outer {
    width: 100%;
    background: #e5e7eb;
    border-radius: 9999px;
    height: 1rem;
    overflow: hidden;
}

.w3a11y-progress-bar-inner {
    background: #3b82f6;
    height: 1rem;
    border-radius: 9999px;
    transition: width 0.5s ease-out;
}

.w3a11y-progress-time {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 0.5rem;
}

.w3a11y-cancel-btn {
    background: #dc2626;
    color: white;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.w3a11y-cancel-btn:hover {
    background: #b91c1c;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Legacy bulk container (fallback) */
.w3a11y-bulk-container:not(.w3a11y-bulk-container) {
    max-width: 1200px;
    margin: 0;
}

/* Statistics Dashboard */
.w3a11y-stats-dashboard {
    margin-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.stat-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s ease;
}

.stat-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.stat-total .stat-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.stat-missing .stat-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.stat-complete .stat-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.stat-credits .stat-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.stat-content {
    flex: 1;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 5px;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
}

.stat-percentage {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Form Sections */
.w3a11y-bulk-form {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.form-section {
    padding: 25px;
    border-bottom: 1px solid #eee;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h2 {
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: #1f2937;
}

.form-section h2 .dashicons {
    color: #0073aa;
}

/* Option Grid */
.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.option-card {
    background: #f9f9f9;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 20px;
}

.option-card h3 {
    margin: 0 0 15px 0;
    font-size: 16px;
    color: #374151;
}

.option-card label {
    display: block;
    margin: 8px 0;
    cursor: pointer;
}

.option-card input[type="checkbox"] {
    margin-right: 8px;
}

.date-range-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 10px 0;
}

.date-range-controls label {
    font-weight: 600;
}

.date-range-controls input {
    display: block;
    width: 100%;
    margin-top: 5px;
}

.category-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.category-column h4 {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #6b7280;
    text-transform: uppercase;
    font-weight: 600;
}

/* Processing Controls */
.processing-controls {
    text-align: center;
}

.processing-controls .button-hero {
    padding: 12px 24px;
    font-size: 16px;
    margin-bottom: 20px;
}

.processing-controls .button-hero .dashicons {
    margin-top: 2px;
    margin-right: 8px;
}

.processing-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.processing-info p {
    margin: 8px 0;
    color: #6b7280;
}

.processing-info strong {
    color: #1f2937;
}

/* Progress Container */
.w3a11y-progress-container {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
}

.progress-header {
    text-align: center;
    margin-bottom: 30px;
}

.progress-header h2 {
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 20px;
    color: #1f2937;
}

.progress-header .spin {
    animation: spin 2s linear infinite;
}

.progress-section {
    margin-bottom: 30px;
}

.progress-stats {
    text-align: center;
    margin-bottom: 15px;
}

.progress-text {
    font-size: 16px;
    color: #6b7280;
}

.progress-bar-container {
    max-width: 500px;
    margin: 0 auto 15px auto;
}

.progress-bar {
    background: #e5e7eb;
    border-radius: 25px;
    height: 25px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    height: 100%;
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 25px;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.progress-details {
    text-align: center;
    color: #6b7280;
}

/* Real-time Stats */
.progress-stats-update {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 30px;
}

.stats-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.stat-item {
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
}

.stat-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
}

/* Progress Controls */
.progress-controls {
    text-align: center;
    margin-bottom: 20px;
}

.progress-controls .button {
    margin: 0 5px;
}

/* Completion Stats */
.completion-stats {
    background: #f0f9ff;
    border: 1px solid #0369a1;
    border-radius: 6px;
    padding: 20px;
    text-align: center;
}

.completion-stats h3 {
    color: #0369a1;
    margin: 0 0 15px 0;
}

.completion-stats p {
    margin: 5px 0;
    color: #1f2937;
}

/* ===== MEDIA MODAL STYLES ===== */

.w3a11y-alttext-container {
    margin-top: 10px;
}

.w3a11y-alttext-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    border-color: #10b981 !important;
    color: white !important;
    text-shadow: none !important;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2) !important;
    width: 100% !important;
}

.w3a11y-alttext-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
    border-color: #059669 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3) !important;
}

.w3a11y-alttext-btn:disabled,
.w3a11y-alttext-btn.generating {
    background: #9ca3af !important;
    border-color: #9ca3af !important;
    cursor: not-allowed !important;
    transform: none !important;
}

.w3a11y-alttext-btn .dashicons {
    margin-top: 3px;
    margin-right: 5px;
    vertical-align: middle;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .option-grid {
        grid-template-columns: 1fr;
    }

    .date-range-controls {
        grid-template-columns: 1fr;
    }

    .category-selection {
        grid-template-columns: 1fr;
    }

    .stats-grid-small {
        grid-template-columns: 1fr;
    }

    .progress-bar-container {
        max-width: none;
    }
}

/* ===== UTILITY CLASSES ===== */

.text-success {
    color: #059669 !important;
}

.text-warning {
    color: #d97706 !important;
}

.text-error {
    color: #dc2626 !important;
}

.text-info {
    color: #0369a1 !important;
}

.bg-success {
    background-color: #ecfdf5 !important;
}

.bg-warning {
    background-color: #fffbeb !important;
}

.bg-error {
    background-color: #fef2f2 !important;
}

.bg-info {
    background-color: #eff6ff !important;
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */

.w3a11y-alttext-btn:focus {
    outline: 2px solid #0073aa;
    outline-offset: 2px;
}

.stat-card:focus-within {
    box-shadow: 0 0 0 2px #0073aa;
}

.option-card label:focus-within {
    background-color: #f0f9ff;
}

.w3a11y-progress-header span.dashicons.dashicons-update.dashicons-yes-alt {
    color: #16a34a;
    font-size: 1.5rem;
    margin-right: 10px;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {

    .progress-header .spin {
        animation: none;
    }

    .progress-fill::after {
        animation: none;
    }

    * {
        transition-duration: 0.01ms !important;
    }
}

/* ===== RESUME UI STYLES ===== */

.w3a11y-resume-container {
    background: linear-gradient(135deg, #fff7ed 0%, #fff1e6 100%);
    border: 2px solid #fb923c;
    border-radius: 12px;
    padding: 32px;
    margin: 24px 0;
    box-shadow: 0 4px 12px rgba(251, 146, 60, 0.15);
    animation: fadeIn 0.3s ease-out;
}

.w3a11y-resume-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.w3a11y-resume-icon {
    color: #ea580c;
    font-size: 24px;
    animation: pulse 2s infinite;
}

.w3a11y-resume-title {
    color: #ea580c;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.w3a11y-resume-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.w3a11y-resume-message h3 {
    color: #9a3412;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.w3a11y-resume-message p {
    color: #7c2d12;
    font-size: 16px;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.w3a11y-resume-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    background: rgba(255, 255, 255, 0.8);
    padding: 16px;
    border-radius: 8px;
    border: 1px solid rgba(251, 146, 60, 0.2);
}

.w3a11y-resume-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.w3a11y-resume-stat-label {
    font-size: 12px;
    font-weight: 500;
    color: #9a3412;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.w3a11y-resume-stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #ea580c;
}

.w3a11y-resume-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.w3a11y-resume-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 140px;
    justify-content: center;
}

.w3a11y-resume-btn-primary {
    background: #ea580c;
    color: white;
    box-shadow: 0 2px 4px rgba(234, 88, 12, 0.2);
}

.w3a11y-resume-btn-primary:hover {
    background: #dc2626;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(234, 88, 12, 0.3);
}

.w3a11y-resume-btn-secondary {
    background: #10b981;
    color: white;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
}

.w3a11y-resume-btn-secondary:hover {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
}

.w3a11y-resume-btn-tertiary {
    background: #64748b;
    color: white;
    box-shadow: 0 2px 4px rgba(100, 116, 139, 0.2);
}

.w3a11y-resume-btn-tertiary:hover {
    background: #475569;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(100, 116, 139, 0.3);
}

.w3a11y-resume-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, 0.6);
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid #fb923c;
}

.w3a11y-resume-note .dashicons {
    color: #ea580c;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.w3a11y-resume-note p {
    color: #7c2d12;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Resume UI animations */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsive resume UI */
@media (max-width: 768px) {
    .w3a11y-resume-container {
        padding: 20px;
        margin: 16px 0;
    }

    .w3a11y-resume-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .w3a11y-resume-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .w3a11y-resume-btn {
        min-width: auto;
        width: 100%;
    }

    .w3a11y-resume-note {
        flex-direction: column;
        gap: 8px;
    }
}