:root {
    --accent-color: #0078D4;
    --accent-hover: #106ebe;
    --accent-light: #e1f0fa;
    --surface-color: #ffffff;
    --surface-secondary: #f3f3f3;
    --surface-tertiary: #fafafa;
    --text-primary: #1a1a1a;
    --text-secondary: #5c5c5c;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --success: #107c10;
    --warning: #ca5010;
    --error: #d13438;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI Variable', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e3e9f3 100%);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
}

.app-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    animation: fadeIn 0.5s ease;
}

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

/* Language Selector */
.language-selector-container {
    position: absolute;
    top: 20px;
    right: 20px;
}

.language-selector {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--surface-color);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 150px;
}

.language-selector:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-sm);
}

.language-selector:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px var(--accent-light);
}

.language-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255,255,255,0.6);
    position: relative;
}

.header h1 {
    font-size: 32px;
    font-weight: 600;
    background: linear-gradient(135deg, #0078D4, #00BCF2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.header-subtitle {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Mode Selector */
.mode-selector {
    display: flex;
    gap: 12px;
    margin: 24px 0;
    background: var(--surface-color);
    padding: 8px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.mode-btn {
    flex: 1;
    padding: 12px 24px;
    border: none;
    background: transparent;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-primary);
}

.mode-btn:hover {
    background: var(--surface-secondary);
}

.mode-btn.active {
    background: var(--accent-color);
    color: white;
    box-shadow: var(--shadow-sm);
}

/* Main Content Area */
.main-content {
    background: var(--surface-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 32px;
    min-height: 600px;
}

/* Wizard Mode */
.wizard-container {
    display: none;
}

.wizard-container.active {
    display: block;
}

.wizard-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px;
    position: relative;
}

.wizard-steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
}

.wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: all 0.3s;
}

.wizard-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--surface-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border: 2px solid var(--border-color);
    margin-bottom: 8px;
    transition: all 0.3s;
}

.wizard-step.active .wizard-step-number {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    transform: scale(1.1);
    box-shadow: 0 0 0 4px var(--accent-light);
}

.wizard-step.completed .wizard-step-number {
    background: var(--success);
    color: white;
    border-color: var(--success);
}

.wizard-step-title {
    font-size: 12px;
    color: var(--text-secondary);
    text-align: center;
    max-width: 100px;
}

.wizard-step.active .wizard-step-title {
    color: var(--accent-color);
    font-weight: 600;
}

.wizard-content {
    animation: slideIn 0.3s ease;
}

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

/* Pro Mode */
.pro-container {
    display: none;
}

.pro-container.active {
    display: block;
}

.pro-tabs {
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
    overflow-x: auto;
}

.pro-tab {
    padding: 12px 24px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.pro-tab:hover {
    color: var(--text-primary);
    background: var(--surface-secondary);
}

.pro-tab.active {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

/* Form Elements */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.form-hint {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 14px;
    transition: all 0.2s;
    background: var(--surface-color);
}

.form-control:hover {
    border-color: var(--text-secondary);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px var(--accent-light);
}

select.form-control {
    cursor: pointer;
}

textarea.form-control {
    resize: vertical;
    font-family: inherit;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
}

.toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--border-color);
    border-radius: 24px;
    transition: 0.3s;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}

.toggle-input:checked + .toggle-slider {
    background: var(--accent-color);
}

.toggle-input:checked + .toggle-slider:before {
    transform: translateX(20px);
}

/* Collapsible Sections */
.collapsible {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
}

.collapsible-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: var(--surface-secondary);
    cursor: pointer;
    user-select: none;
    transition: all 0.2s;
}

.collapsible-header:hover {
    background: var(--surface-tertiary);
}

.collapsible-header.active {
    background: var(--accent-light);
    color: var(--accent-color);
}

.collapsible-icon {
    transition: transform 0.3s;
}

.collapsible-header.active .collapsible-icon {
    transform: rotate(180deg);
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.collapsible-content.active {
    max-height: 2000px;
    padding: 16px;
}

/* Buttons */
.btn {
    padding: 10px 24px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--surface-secondary);
    color: var(--text-primary);
}

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

.btn-success {
    background: var(--success);
    color: white;
}

.btn-group {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

/* XML Preview */
.xml-preview {
    background: #1e1e1e;
    color: #d4d4d4;
    padding: 20px;
    border-radius: var(--radius-md);
    font-family: 'Cascadia Code', 'Consolas', monospace;
    font-size: 13px;
    max-height: 500px;
    overflow-y: auto;
    line-height: 1.5;
}

.xml-tag { color: #569cd6; }
.xml-attr { color: #9cdcfe; }
.xml-value { color: #ce9178; }
.xml-comment { color: #6a9955; }

/* Action Bar */
.action-bar {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 12px;
    z-index: 1000;
}

.fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 20px;
}

.fab-primary {
    background: var(--accent-color);
    color: white;
    box-shadow: var(--shadow-lg);
}

.fab-primary:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(0,120,212,0.3);
}

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top-color: var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, #e3f2fd, #e1f5fe);
    border-left: 4px solid var(--accent-color);
    border-radius: var(--radius-md);
    padding: 16px;
    margin: 16px 0;
}

.info-box-title {
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-box-content {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.5;
}

/* Grid Layout */
.grid {
    display: grid;
    gap: 24px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Cards */
.card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: all 0.2s;
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background: var(--text-primary);
    color: white;
    text-align: center;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* Modal - FIXED CENTERING */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    /* Ensure modal is above everything */
    inset: 0;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Additional positioning to ensure centering */
    position: fixed;
    inset: 0;
}

.modal-content {
    background: var(--surface-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
    position: relative;
    z-index: 10000;
    /* Additional centering properties */
    margin: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.modal-title {
    font-size: 24px;
    font-weight: 600;
}

.modal-close {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--surface-secondary);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-size: 18px;
    line-height: 1;
}

.modal-close:hover {
    background: var(--error);
    color: white;
    transform: rotate(90deg);
}

/* Modal Body Styling */
.modal-body {
    padding: 20px 0;
    max-height: 60vh;
    overflow-y: auto;
}

.modal-body h3 {
    color: var(--accent-color);
    margin-bottom: 12px;
    font-size: 18px;
}

.modal-body h4 {
    color: var(--text-primary);
    margin-top: 20px;
    margin-bottom: 8px;
    font-size: 16px;
}

.modal-body p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.modal-body ul {
    margin-left: 20px;
    margin-bottom: 12px;
}

.modal-body ul li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.5;
}

.modal-body ul li strong {
    color: var(--text-primary);
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: notificationSlideIn 0.3s ease;
    z-index: 3000;
}

/* Static notifications in wizard content */
.wizard-page .notification {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    animation: none !important;
    z-index: 1 !important;
}

@keyframes notificationSlideIn {
    from { transform: translateX(400px); }
    to { transform: translateX(0); }
}

@keyframes notificationSlideOut {
    from { transform: translateX(0); }
    to { transform: translateX(400px); }
}

.notification.success {
    background: var(--success);
    color: white;
}

.notification.error {
    background: var(--error);
    color: white;
}

.notification.warning {
    background: var(--warning);
    color: white;
}

/* Dynamic Items */
.partition-item, .user-item, .software-item, .script-item {
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 10px;
    background: var(--surface-tertiary);
}

.remove-btn {
    background: var(--error);
    color: white;
    padding: 5px 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

.remove-btn:hover {
    background: #a80000;
}

/* Responsive */
@media (max-width: 1200px) {
    .app-container {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .wizard-steps {
        flex-wrap: wrap;
    }
    
    .wizard-step-title {
        font-size: 11px;
    }
    
    .pro-tabs {
        flex-wrap: wrap;
    }
    
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .header h1 {
        font-size: 24px;
    }
    
    .language-selector-container {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 10px;
    }
    
    .language-selector {
        width: 100%;
    }
    
    .btn-group {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .app-container {
        padding: 10px;
    }
    
    .main-content {
        padding: 16px;
    }
    
    .header {
        padding: 16px;
    }
    
    .wizard-step-number {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .wizard-step-title {
        font-size: 10px;
        max-width: 60px;
    }
}

/* Print Styles */
@media print {
    .header,
    .mode-selector,
    .action-bar,
    .btn-group,
    .language-selector-container {
        display: none;
    }
    
    .main-content {
        box-shadow: none;
        padding: 0;
    }
    
    .xml-preview {
        background: white;
        color: black;
        max-height: none;
    }
}

/* Dark Mode Support (if browser prefers dark) */
@media (prefers-color-scheme: dark) {
    :root {
        --surface-color: #1e1e1e;
        --surface-secondary: #2d2d30;
        --surface-tertiary: #3e3e42;
        --text-primary: #cccccc;
        --text-secondary: #9d9d9d;
        --border-color: #464647;
        --accent-light: #004578;
    }
    
    body {
        background: linear-gradient(135deg, #1e1e1e 0%, #2d2d30 100%);
    }
    
    .header {
        background: rgba(30, 30, 30, 0.8);
        border: 1px solid rgba(70,70,70,0.6);
    }
    
    .form-control {
        background: var(--surface-secondary);
        color: var(--text-primary);
    }
    
    .xml-preview {
        background: #1e1e1e;
    }
}

/* Accessibility Improvements */
.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;
}

:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --accent-color: #0066cc;
        --text-primary: #000000;
        --surface-color: #ffffff;
        --border-color: #000000;
    }
}

/* RTL Support */
[dir="rtl"] {
    .header {
        text-align: right;
    }
    
    .language-selector-container {
        right: auto;
        left: 20px;
    }
    
    .wizard-steps::before {
        right: auto;
        left: 0;
    }
    
    .btn-group {
        flex-direction: row-reverse;
    }
    
    .info-box {
        border-left: none;
        border-right: 4px solid var(--accent-color);
    }
}
/* Save Indicator */
.save-indicator {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(76, 175, 80, 0.95);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    animation: slideUp 0.3s ease-out;
    transition: opacity 0.3s ease;
}

.save-indicator.fade-out {
    opacity: 0;
}

@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

/* Enhanced Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 300px;
    max-width: 500px;
    padding: 16px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    z-index: 3000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification.fade-out {
    opacity: 0;
    transform: translateX(400px);
}

.notification-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
    transition: opacity 0.2s;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    opacity: 1;
}

/* Error Messages for Form Validation */
.error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

input.error,
select.error,
textarea.error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Loading Spinner */
.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

.spinner-border {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #007bff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Tooltip Styles */
.tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 5000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
}

.tooltip.visible {
    opacity: 1;
}

.tooltip::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: 5px solid transparent;
}

.tooltip-top::after {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-top-color: rgba(0, 0, 0, 0.9);
}

.tooltip-bottom::after {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-color: rgba(0, 0, 0, 0.9);
}

.tooltip-left::after {
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-left-color: rgba(0, 0, 0, 0.9);
}

.tooltip-right::after {
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-right-color: rgba(0, 0, 0, 0.9);
}

/* Responsive Classes */
body.mobile .app-container {
    max-width: 100%;
    padding: 10px;
}

body.tablet .app-container {
    max-width: 100%;
    padding: 15px;
}

body.desktop .app-container {
    max-width: 1400px;
}

/* Auto-save Status Indicator (optional) */
.auto-save-status {
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-size: 11px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.auto-save-status:hover {
    opacity: 1;
}

.auto-save-status.saving::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffc107;
    animation: pulse 1s infinite;
}

.auto-save-status.saved::before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Focus Trap Visual Indicator (for accessibility) */
[data-focus-trap-handler="true"] {
    position: relative;
}

[data-focus-trap-handler="true"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    pointer-events: none;
    border-radius: inherit;
}

[data-focus-trap-handler="true"]:focus-within::before {
    border-color: rgba(0, 123, 255, 0.25);
}