/* ============================================
   ProSubtitle - Premium Dark Theme Styles
   ============================================ */

/* ===== CSS Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --bg-elevated: #1e1e1e;

    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #707070;

    --accent-primary: #3b82f6;
    --accent-secondary: #8b5cf6;
    --accent-success: #10b981;
    --accent-warning: #f59e0b;
    --accent-danger: #ef4444;

    --border-color: #333333;
    --border-hover: #4a4a4a;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);

    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'Consolas', 'Monaco', 'Courier New', monospace;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: static !important;
    top: 0 !important;
}

/* Fix Google Translate positioning - only hide the annoying top banner */
.goog-te-banner-frame {
    display: none !important;
}

/* Keep body at top (Google Translate normally pushes body down) */
body {
    top: 0 !important;
}

/* Translation Widget Content - matching syedgakbar.com */
/* Position on-page so Google Translate can see it, but visually hidden */
#translateWidgetContent {
    position: fixed;
    top: 50px;
    left: 0;
    z-index: 9999;
    width: 800px;
    max-height: 80vh;
    overflow: auto;
    background: transparent;
    pointer-events: none;
}

/* ===== App Container ===== */
.app-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ===== Navbar ===== */
.navbar {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 0 2rem;
    height: 70px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.navbar-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.brand-text h1 {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.brand-tagline {
    font-size: 12px;
    color: var(--text-muted);
    display: block;
    margin-top: -4px;
}

.navbar-actions {
    display: flex;
    gap: 0.5rem;
}

/* ===== Buttons ===== */
.btn {
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-normal);
    font-family: var(--font-primary);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), #2563eb);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb, var(--accent-primary));
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-elevated);
    border-color: var(--border-hover);
}

.btn-success {
    background: linear-gradient(135deg, var(--accent-success), #059669);
    color: white;
}

.btn-warning {
    background: linear-gradient(135deg, var(--accent-warning), #d97706);
    color: white;
}

.btn-danger {
    background: linear-gradient(135deg, var(--accent-danger), #dc2626);
    color: white;
}

.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-icon:hover {
    background: var(--bg-elevated);
    color: var(--text-primary);
    border-color: var(--border-hover);
}

/* ===== Main Content ===== */
.main-content {
    flex: 1;
    padding: 2rem;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
}

/* ===== Toolbar ===== */
.toolbar {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.toolbar-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toolbar-label {
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, var(--accent-primary), #2563eb);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition-normal);
}

.toolbar-label:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== Select Inputs ===== */
.select-input {
    padding: 0.625rem 1rem;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.select-input:hover {
    border-color: var(--border-hover);
    background: var(--bg-elevated);
}

.select-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* ===== Status Bar ===== */
.status-bar {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.875rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 14px;
}

.status-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.status-info i {
    color: var(--accent-primary);
}

.status-stats {
    display: flex;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 13px;
}

.separator {
    color: var(--border-color);
}

/* ===== Editor Container ===== */
.editor-container {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.editor-header {
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view-toggle {
    display: flex;
    gap: 0.5rem;
    background: var(--bg-tertiary);
    padding: 4px;
    border-radius: 8px;
}

.view-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    color: var(--text-secondary);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
}

.view-btn:hover {
    color: var(--text-primary);
}

.view-btn.active {
    background: var(--accent-primary);
    color: white;
}

.editor-content {
    min-height: calc(100vh - 450px);
    max-height: calc(100vh - 300px);
    overflow-y: auto;
}

/* Custom Scrollbar */
.editor-content::-webkit-scrollbar {
    width: 10px;
}

.editor-content::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
}

.editor-content::-webkit-scrollbar-thumb {
    background: var(--border-hover);
    border-radius: 5px;
}

.editor-content::-webkit-scrollbar-thumb:hover {
    background: #5a5a5a;
}

/* ===== Empty State ===== */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.empty-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    margin-bottom: 2rem;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.empty-state h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.empty-hint {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* ===== Subtitle Table ===== */
.table-wrapper {
    overflow-x: auto;
}

.subtitle-table {
    width: 100%;
    border-collapse: collapse;
}

.subtitle-table thead {
    position: sticky;
    top: 0;
    z-index: 10;
    background: var(--bg-elevated);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.subtitle-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border-color);
    font-size: 14px;
}

.subtitle-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
    font-size: 14px;
}

.subtitle-table tbody tr {
    transition: background var(--transition-fast);
}

.subtitle-table tbody tr:hover {
    background: var(--bg-elevated);
}

.subtitle-table textarea {
    width: 100%;
    min-height: 60px;
    padding: 0.75rem;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 14px;
    resize: vertical;
    transition: all var(--transition-fast);
}

.subtitle-table textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: var(--bg-elevated);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.timing-display {
    font-family: var(--font-mono);
    color: var(--accent-primary);
    font-size: 13px;
}

.subtitle-actions {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    width: 32px;
    height: 32px;
    padding: 0;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.action-btn:hover {
    background: var(--bg-elevated);
    color: var(--text-primary);
    border-color: var(--border-hover);
}

/* ===== Modals ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-elevated);
}

.modal-header h3 {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modal-close {
    width: 32px;
    height: 32px;
    padding: 0;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 20px;
    transition: all var(--transition-fast);
    border-radius: 6px;
}

.modal-close:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    max-height: calc(80vh - 140px);
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    background: var(--bg-elevated);
}

/* ===== Form Elements ===== */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-primary);
    transition: all var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: var(--bg-elevated);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-options {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* ===== Drop Zone ===== */
.drop-zone-modal .modal-content {
    max-width: 500px;
}

.drop-zone {
    padding: 3rem 2rem;
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    text-align: center;
    transition: all var(--transition-normal);
}

.drop-zone.drag-over {
    border-color: var(--accent-primary);
    background: rgba(59, 130, 246, 0.05);
}

.drop-zone-icon {
    font-size: 64px;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.drop-zone h3 {
    font-size: 20px;
    margin-bottom: 0.5rem;
}

.drop-zone p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* ===== Progress Modal ===== */
.progress-modal .modal-content {
    max-width: 500px;
}

.progress-info {
    padding: 1rem 0;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.progress-bar {
    height: 12px;
    background: var(--bg-tertiary);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 6px;
    transition: width 0.3s ease;
    width: 0%;
}

.progress-stats {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}

/* ===== Shortcuts Modal ===== */
.shortcuts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.shortcut-item {
    padding: 1rem;
    background: var(--bg-tertiary);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.shortcut-item kbd {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
}

.shortcut-item span {
    color: var(--text-secondary);
    font-size: 13px;
}

/* ===== Toast Notifications ===== */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 400px;
}

.toast {
    padding: 1rem 1.25rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-primary);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: toastSlideIn 0.3s ease;
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toast.success {
    border-left-color: var(--accent-success);
}

.toast.warning {
    border-left-color: var(--accent-warning);
}

.toast.error {
    border-left-color: var(--accent-danger);
}

.toast-icon {
    font-size: 20px;
}

.toast.success .toast-icon {
    color: var(--accent-success);
}

.toast.warning .toast-icon {
    color: var(--accent-warning);
}

.toast.error .toast-icon {
    color: var(--accent-danger);
}

.toast-message {
    flex: 1;
    font-size: 14px;
}

/* ===== Utility Classes ===== */
.hidden {
    display: none !important;
}

.notranslate {
    translate: no;
    user-select: none;
}

.translate-widget-container {
    position: absolute;
    top: 10px;
    right: 120px;
    z-index: 999;
}

#google_translate_element {
    background: white;
    border-radius: 8px;
    padding: 4px;
}

/* ===== Timing Section ===== */
.timing-section {
    margin-bottom: 2rem;
}

.timing-section:last-child {
    margin-bottom: 0;
}

.timing-section h4 {
    font-size: 16px;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.timing-controls {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.timing-controls .form-input {
    max-width: 150px;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .toolbar-section {
        flex-wrap: wrap;
    }

    .main-content {
        padding: 1rem;
    }

    .navbar {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .brand-text h1 {
        font-size: 18px;
    }

    .brand-tagline {
        font-size: 10px;
    }

    .status-bar {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .subtitle-table {
        font-size: 12px;
    }

    .subtitle-table th,
    .subtitle-table td {
        padding: 0.75rem 0.5rem;
    }

    .modal-content {
        width: 95%;
    }
}

/* ===== Search Results ===== */
.search-results {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    min-height: 50px;
}

/* ===== Animations ===== */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* ===== Light Theme (Optional) ===== */
body.light-theme {
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --bg-tertiary: #e5e5e5;
    --bg-elevated: #fafafa;

    --text-primary: #000000;
    --text-secondary: #404040;
    --text-muted: #909090;

    --border-color: #d0d0d0;
    --border-hover: #b0b0b0;
}

/* ===== Translation Helpers (Invisible) ===== */
#translateWidgetContent,
#ghostTranslator {
    position: fixed;
    top: 50px;
    left: 0;
    width: 800px;
    height: 200px;
    z-index: -1000;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}

/* ===== Animations & Polish ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#appWrapper {
    animation: fadeIn 0.6s ease-out;
}

#infoBtn {
    transition: all 0.2s ease;
}

#infoBtn:hover {
    color: var(--primary-color);
    background: var(--bg-tertiary);
    transform: rotate(15deg);
}

/* FAQ Details Polish */
details>summary {
    list-style: none;
    /* Hide default triangle */
}

details>summary::-webkit-details-marker {
    display: none;
}

details[open] summary~* {
    animation: fadeIn 0.3s ease-in-out;
}

. h

/* Utility */
.hidden {
    display: none !important;
}

/* ===== Split View ===== */
.split-view-container {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.split-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 50px 1fr 1fr 50px;
    gap: 1.5rem;
    align-items: start;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.split-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
    background: var(--bg-elevated);
}

.split-id {
    font-weight: 700;
    color: var(--text-muted);
    text-align: center;
    padding-top: 0.5rem;
    font-family: var(--font-mono);
}

.split-original,
.split-translated {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.split-header {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.split-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-primary);
    white-space: pre-wrap;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px solid transparent;
}

.split-editor {
    width: 100%;
    min-height: 80px;
    padding: 1rem;
    background: var(--bg-primary);
    /* Dark background */
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.6;
    resize: vertical;
    transition: all var(--transition-fast);
}

.split-editor:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: var(--bg-elevated);
}

.split-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    padding-top: 0.25rem;
}

/* Responsive Split View */
@media (max-width: 768px) {
    .split-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .split-id {
        text-align: left;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 0.75rem;
        font-size: 1.25rem;
    }

    .split-actions {
        flex-direction: row;
        justify-content: flex-end;
        padding-top: 0;
        border-top: 1px solid var(--border-color);
        padding-top: 1rem;
    }
}