/*
 * Aura Premium Design System
 * Focus: Sophisticated Gradients, Modern Typography, Glassmorphism
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette - Deep Aura */
    --aura-primary: #8833FF;
    --aura-primary-gradient: linear-gradient(135deg, #8833FF 0%, #B066FE 100%);
    --aura-secondary: #00D1FF;
    --aura-secondary-gradient: linear-gradient(135deg, #00D1FF 0%, #0075FF 100%);
    --aura-dark: #0F172A;
    --aura-dark-surface: #1E293B;
    --aura-light: #F8FAFC;
    --aura-glass: rgba(255, 255, 255, 0.05);
    --aura-glass-border: rgba(255, 255, 255, 0.1);
    --aura-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
    --aura-dropdown-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.5);
    
    /* Premium Gradients Unification - Ultra Neon Boost */
    --aura-grad-purple: linear-gradient(135deg, #7000ff 0%, #a000ff 100%);
    --aura-grad-cyan: linear-gradient(135deg, #00f3ff 0%, #00a8ff 100%);
    --aura-grad-green: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    --aura-grad-orange: linear-gradient(135deg, #ffb800 0%, #ff8a00 100%);
    --aura-grad-add: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);

    /* Text */
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

body {
    background-color: var(--aura-dark);
    color: var(--aura-light);
    font-family: var(--font-main);
    line-height: 1.6;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    background-image: 
        radial-gradient(circle at 0% 0%, rgba(136, 51, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(0, 209, 255, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* Glassmorphism Components */
.aura-card {
    background: var(--aura-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--aura-glass-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--aura-shadow);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

.aura-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
    border-color: rgba(136, 51, 255, 0.3);
}

.aura-card-no-hover:hover {
    transform: none !important;
    box-shadow: var(--aura-shadow) !important;
    border-color: var(--aura-glass-border) !important;
}

/* Buttons */
.btn-aura {
    background: var(--aura-primary-gradient);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(136, 51, 255, 0.4);
}

.btn-aura:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(136, 51, 255, 0.6);
    filter: brightness(1.1);
}

/* Navbar Overrides & Premium Reinvention */
.navbar {
    background: rgba(15, 23, 42, 0.7) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.75rem 0;
    z-index: 1030;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-brand img.logo {
    filter: brightness(0) invert(1);
    height: 42px;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.navbar-brand:hover img.logo {
    transform: rotate(5deg) scale(1.1);
}

.nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.6rem 1.1rem !important;
    border-radius: 12px;
    margin: 0 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.nav-link i {
    font-size: 1.15rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.05);
}

.nav-link:hover i {
    opacity: 1;
    transform: translateY(-2px);
    color: var(--aura-secondary);
}

.nav-item.dropdown:hover .nav-link {
    background: rgba(255, 255, 255, 0.08);
    color: #fff !important;
}

.dropdown-menu {
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0.8rem;
    margin-top: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: aura-dropdown-fade 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes aura-dropdown-fade {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.8) !important;
    border-radius: 10px;
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.25s ease;
}

.dropdown-item i {
    font-size: 1rem;
    opacity: 0.5;
    transition: all 0.25s ease;
}

.dropdown-item:hover {
    background: var(--aura-primary-gradient) !important;
    color: #fff !important;
    transform: translateX(6px);
    box-shadow: 0 4px 12px rgba(136, 51, 255, 0.3);
}

.dropdown-item:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.dropdown-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin: 0.5rem 0;
}

/* Tables - Continuous Glass Style (Ultra) */
.table {
    color: var(--aura-light) !important;
    border-collapse: collapse !important;
    border-spacing: 0 !important;
    width: 100% !important;
    background: transparent !important;
}

.table thead th {
    border: none;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--aura-secondary);
}

.table tbody tr {
    background: transparent !important;
    transition: all 0.2s ease;
}

.table tbody tr td {
    border-top: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 1.2rem 1rem !important;
    color: var(--aura-light) !important;
    vertical-align: middle;
}

.table tbody tr:last-child td {
    border-bottom: none !important;
}

.table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03) !important;
}

.table-aura {
    background: transparent !important;
}

.table-aura thead th {
    background: rgba(0, 0, 0, 0.2);
    border: none;
    color: var(--aura-secondary);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 15px;
}

.table-aura tbody td {
    background: rgba(255, 255, 255, 0.005);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 12px 15px;
    vertical-align: middle;
    transition: all 0.2s ease;
}

.table-aura tbody tr:hover td {
    background: rgba(255, 255, 255, 0.025);
}

/* Tabela de Serviços e Peças Premium */
.table-aura .select2-container--bootstrap4 .select2-selection,
.table-aura .select2-container--default .select2-selection--single {
    height: 38px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 8px !important;
    padding: 0 !important;
}

.table-aura .select2-container--bootstrap4 .select2-selection .select2-selection__rendered,
.table-aura .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 36px !important;
    font-size: 0.75rem !important;
    padding-left: 12px !important;
}

.table-aura .select2-container--bootstrap4 .select2-selection .select2-selection__arrow,
.table-aura .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px !important;
}

.table-aura .input-group-text {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-left: none !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

.table-aura .form-control {
    border-right: none !important;
}

.table-aura textarea.form-control {
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 8px !important;
}

.subtotal-aura {
    background: rgba(0, 209, 255, 0.03) !important;
    border: 1px solid rgba(0, 209, 255, 0.1) !important;
    color: #00d1ff !important;
    font-weight: 800 !important;
    text-align: right;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.8rem;
    box-shadow: inset 0 0 10px rgba(0, 209, 255, 0.05);
    min-width: 100px;
    display: inline-block;
}

/* Loading Modal */
.modal-loading {
    background: rgba(15, 23, 42, 0.9) !important;
}

/* Custom Image Previews (Aura style) */
#image-preview, ._image-preview {
    border: 2px solid var(--aura-primary) !important;
    box-shadow: 0 0 20px rgba(136, 51, 255, 0.3);
}

/* Pulse Animations */
@keyframes aura-pulse {
    0% { box-shadow: 0 0 0 0 rgba(136, 51, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(136, 51, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(136, 51, 255, 0); }
}

.pulse-aura {
    animation: aura-pulse 2s infinite;
}

/* Legacy overrides to fix visibility with white background in Bootstrap defaults */
.bg-white {
    background-color: var(--aura-dark-surface) !important;
}

.text-primary {
    color: var(--aura-secondary) !important;
}

.shadow-sm {
    box-shadow: var(--aura-shadow) !important;
}

/* Form Elements */
label {
    color: var(--aura-secondary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--aura-glass-border) !important;
    color: var(--aura-light) !important;
    border-radius: 10px !important;
    padding: 0.6rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--aura-secondary) !important;
    box-shadow: 0 0 15px rgba(0, 209, 255, 0.2) !important;
    outline: none;
}

.form-control::placeholder {
    color: rgba(248, 250, 252, 0.4) !important;
}

/* Textarea specific */
textarea.form-control {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 209, 255, 0.3) transparent;
    min-height: 120px !important;
}

textarea.form-control::-webkit-scrollbar {
    width: 6px;
}

textarea.form-control::-webkit-scrollbar-track {
    background: transparent;
}

textarea.form-control::-webkit-scrollbar-thumb {
    background: rgba(0, 209, 255, 0.3);
    border-radius: 10px;
}

textarea.form-control::-webkit-resizer {
    background-color: transparent !important;
}

/* Custom Checkbox Aura */
.custom-check-aura .form-check-input {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--aura-glass-border);
    border-radius: 4px;
    width: 1.2rem;
    height: 1.2rem;
    margin-top: 0.2rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.custom-check-aura .form-check-input:checked {
    background-color: var(--aura-primary);
    border-color: var(--aura-primary);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.custom-check-aura .form-check-label {
    cursor: pointer;
    font-size: 0.85rem;
    padding-left: 5px;
    transition: color 0.2s ease;
}

.custom-check-aura .form-check-input:checked + .form-check-label {
    color: white !important;
    font-weight: 600;
}

/* Fix standard select options */
select option {
    background-color: var(--aura-dark-surface);
    color: var(--aura-light);
}

/* Modernize standard buttons */
.btn-success {
    background-color: #10B981 !important;
    border-color: #10B981 !important;
    color: #fff !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3) !important;
}

.btn-danger {
    background-color: #EF4444 !important;
    border-color: #EF4444 !important;
    color: #fff !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3) !important;
}

/* Modal Aura Style */
.modal-content {
    background-color: var(--aura-dark-surface) !important;
    border: 1px solid var(--aura-glass-border) !important;
    color: var(--aura-light) !important;
    border-radius: 20px !important;
    box-shadow: var(--aura-shadow) !important;
}

.modal-header, .modal-footer {
    border-color: var(--aura-glass-border) !important;
}

.btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* Select2 Aura Style Overrides */
.select2-container--bootstrap4 .select2-selection,
.select2-container .select2-selection--single,
.select2-container--default .select2-selection--single {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--aura-glass-border) !important;
    color: var(--aura-light) !important;
    border-radius: 10px !important;
    height: 42px !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 0.5rem !important;
    transition: all 0.3s ease !important;
}

.select2-container--bootstrap4.select2-container--focus .select2-selection,
.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: var(--aura-primary) !important;
    box-shadow: 0 0 15px rgba(136, 51, 255, 0.2) !important;
    background-color: rgba(255, 255, 255, 0.08) !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    color: var(--aura-light) !important;
    padding-left: 0.5rem !important;
    line-height: 40px !important;
}

.select2-container .select2-selection--single .select2-selection__placeholder {
    color: rgba(248, 250, 252, 0.4) !important;
}

.select2-container .select2-selection--single .select2-selection__arrow {
    height: 40px !important;
}

.select2-dropdown {
    background-color: var(--aura-dark-surface) !important;
    border: 1px solid var(--aura-glass-border) !important;
    border-radius: 12px !important;
    box-shadow: var(--aura-dropdown-shadow) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1100 !important;
}

.select2-results__option {
    color: var(--aura-light) !important;
    padding: 10px 15px !important;
    transition: background 0.2s ease;
}

.select2-results__option--highlighted {
    background: var(--aura-primary-gradient) !important;
    color: white !important;
}

.select2-search--dropdown .select2-search__field {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--aura-glass-border) !important;
    color: var(--aura-light) !important;
    border-radius: 8px !important;
}

/* Input Group Alignment Fix for Select2 */
.input-group:has(.select2-container) {
    flex-wrap: nowrap !important;
}

.input-group > .select2-container {
    flex: 1 1 auto !important;
    width: 1% !important;
    display: block !important;
}

.input-group > .select2-container .select2-selection--single {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    width: 100% !important;
}

.input-group > .btn-aura-add-sm {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    height: 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: -1px !important;
    z-index: 3 !important;
}

.btn-aura-back {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid var(--aura-glass-border) !important;
    color: var(--aura-light) !important;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-aura-back:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: white !important;
    transform: translateY(-2px);
}

.select2-search__field {
    background-color: var(--aura-dark) !important;
    border: 1px solid var(--aura-glass-border) !important;
    color: var(--aura-light) !important;
    border-radius: 8px !important;
    padding: 0.5rem !important;
    outline: none !important;
}

.select2-container--bootstrap4 .select2-search--dropdown .select2-search__field {
    background-color: var(--aura-dark) !important;
    color: var(--aura-light) !important;
    border: 1px solid var(--aura-glass-border) !important;
}

.select2-container--bootstrap4 .select2-results__option--highlighted {
    background-color: var(--aura-primary) !important;
    color: white !important;
}

/* Aura Icon Action Buttons - Fidelidade Visual Absoluta (Dark Glass) */
.btn-icon-aura, 
button.btn-icon-aura, 
a.btn-icon-aura {
    width: 32px !important;
    height: 32px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    cursor: pointer !important;
    background: rgba(0, 0, 0, 0.3) !important;
    color: #fff !important;
    position: relative !important;
    text-decoration: none !important;
    padding: 0 !important;
    margin: 0 !important;
    outline: none !important;
    box-sizing: border-box !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    line-height: 1 !important;
}

.btn-icon-aura i,
button.btn-icon-aura i,
a.btn-icon-aura i {
    font-size: 1.2rem !important;
    color: #fff !important; /* Forçando branco para ícones */
    line-height: 1 !important;
    display: inline-block !important;
}

.btn-icon-aura:hover,
button.btn-icon-aura:hover,
a.btn-icon-aura:hover {
    transform: translateY(-2px) scale(1.12) !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3) !important;
    border-color: rgba(255,255,255,0.4) !important;
    color: #fff !important;
    z-index: 10 !important;
}

.btn-icon-aura-warning, button.btn-icon-aura-warning, a.btn-icon-aura-warning { 
    background: rgba(255, 193, 7, 0.2) !important; 
    color: #ffc107 !important; 
    border: 1px solid rgba(255, 193, 7, 0.4) !important;
}
.btn-icon-aura-warning i { color: #ffc107 !important; }
.btn-icon-aura-warning:hover { border-color: rgba(255, 193, 7, 0.5) !important; box-shadow: 0 0 10px rgba(255, 193, 7, 0.2) !important; }

.btn-icon-aura-danger, button.btn-icon-aura-danger, a.btn-icon-aura-danger { 
    background: rgba(220, 53, 69, 0.2) !important; 
    color: #ea868f !important; 
    border: 1px solid rgba(220, 53, 69, 0.4) !important;
}
.btn-icon-aura-danger i { color: #ea868f !important; }
.btn-icon-aura-danger:hover { border-color: rgba(220, 53, 69, 0.5) !important; box-shadow: 0 0 10px rgba(220, 53, 69, 0.2) !important; }

.btn-icon-aura-success, button.btn-icon-aura-success, a.btn-icon-aura-success { 
    background: rgba(25, 135, 84, 0.2) !important; 
    color: #75b798 !important; 
    border: 1px solid rgba(25, 135, 84, 0.4) !important;
}
.btn-icon-aura-success i { color: #75b798 !important; }

.btn-icon-aura-info, button.btn-icon-aura-info, a.btn-icon-aura-info { 
    background: rgba(13, 110, 253, 0.2) !important; 
    color: #6ea8fe !important; 
    border: 1px solid rgba(13, 110, 253, 0.4) !important;
}
.btn-icon-aura-info i { color: #6ea8fe !important; }

.btn-icon-aura-dark, button.btn-icon-aura-dark, a.btn-icon-aura-dark { 
    background: rgba(255, 255, 255, 0.1) !important; 
    color: #fff !important; 
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.btn-icon-aura-secondary, button.btn-icon-aura-secondary, a.btn-icon-aura-secondary { 
    background: rgba(108, 117, 125, 0.2) !important; 
    color: #adb5bd !important; 
    border: 1px solid rgba(108, 117, 125, 0.4) !important;
}

/* Ajuste específico para o botão de checklist (pode ser mais largo) */
.btn-checklist-aura {
    width: auto !important;
    min-width: 42px !important;
    padding: 0 12px !important;
    gap: 8px !important;
}

/* Badges e Dots de Checklist */
.oficina-info-badge {
    background: var(--aura-primary);
    color: white;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
}

.checklist-dots {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3px;
    z-index: 5;
}

.checklist-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.5);
    box-shadow: 0 0 4px rgba(0,0,0,0.5);
}

.dot-bom { background: #2ecc71; box-shadow: 0 0 5px #2ecc71 !important; }
.dot-reg { background: #f1c40f; box-shadow: 0 0 5px #f1c40f !important; }
.dot-ruim { background: #e74c3c; box-shadow: 0 0 5px #e74c3c !important; }

/* Aura Glass Buttons (Secondary/Back) */
.btn-aura-back {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 10px !important;
    padding: 0.5rem 1.25rem !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    text-decoration: none !important;
}

.btn-aura-back:hover {
    background: rgba(255, 255, 255, 0.18) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    transform: translateX(-3px) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
    color: white !important;
}

.btn-aura-back i {
    font-size: 0.9rem !important;
    transition: transform 0.3s !important;
}

.btn-aura-back:hover i {
    transform: translateX(-2px) !important;
}

/* Aura List Layout Standard */
.aura-header-gradient {
    background: rgba(0, 0, 0, 0.25) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.aura-header-gradient::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.stats-card {
    background: var(--aura-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--aura-glass-border);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 100%;
    border-bottom: 4px solid rgba(255, 255, 255, 0.1);
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* Vibrant Stats Classes - Ultra Neon Edition */
.bg-aura-cyan { background: var(--aura-grad-cyan) !important; border-bottom-color: rgba(255,255,255,0.2) !important; color: #fff !important; }
.bg-aura-cyan p, .bg-aura-cyan h3 { color: #fff !important; }
.bg-aura-cyan i { color: rgba(255,255,255,0.2) !important; }

.bg-aura-purple { background: var(--aura-grad-purple) !important; border-bottom-color: rgba(255,255,255,0.2) !important; color: #fff !important; }
.bg-aura-purple p, .bg-aura-purple h3 { color: #fff !important; }
.bg-aura-purple i { color: rgba(255,255,255,0.2) !important; }

.bg-aura-orange { background: var(--aura-grad-orange) !important; border-bottom-color: rgba(255,255,255,0.2) !important; color: #fff !important; }
.bg-aura-orange p, .bg-aura-orange h3 { color: #fff !important; }
.bg-aura-orange i { color: rgba(255,255,255,0.2) !important; }

.bg-aura-green { background: var(--aura-grad-green) !important; border-bottom-color: rgba(255,255,255,0.2) !important; color: #fff !important; }
.bg-aura-green p, .bg-aura-green h3 { color: #fff !important; }
.bg-aura-green i { color: rgba(255,255,255,0.2) !important; }

.stats-card i {
    font-size: 2.5rem;
    opacity: 0.3;
    position: absolute;
    right: -10px;
    bottom: -10px;
}

.stats-card-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0;
}

.stats-card-info p {
    font-size: 0.8rem;
    margin-bottom: 0;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Standard OS Table Styling */
.os-table {
    border-collapse: collapse !important;
}
.os-table thead th {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.8) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1px;
    padding: 1rem !important;
    font-weight: 600;
}

.os-table tbody tr {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.2s ease;
}

.os-table tbody tr td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.os-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02) !important;
}

/* Badge Refinement - Premium Glass Style */
.badge {
    padding: 0.35rem 0.9rem !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    font-size: 0.65rem !important;
    letter-spacing: 0.8px !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease !important;
}

.badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3) !important;
    filter: brightness(1.1);
}

.badge-aura-homol {
    background: rgba(255, 193, 7, 0.15) !important;
    color: #ffda6a !important;
    border: 1px solid rgba(255, 193, 7, 0.4) !important;
}

.badge-aura-prod {
    background: rgba(13, 202, 240, 0.15) !important;
    color: #6ee3ff !important;
    border: 1px solid rgba(13, 202, 240, 0.4) !important;
}

.badge-aura-success {
    background: rgba(25, 135, 84, 0.15) !important;
    color: #75b798 !important;
    border: 1px solid rgba(25, 135, 84, 0.4) !important;
}

.badge-aura-secondary {
    background: rgba(255, 255, 255, 0.05) !important;
    color: rgba(255, 255, 255, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.badge-aura-data {
    background: rgba(15, 23, 42, 0.6) !important;
    color: var(--aura-secondary) !important;
    border: 1px solid rgba(0, 209, 255, 0.3) !important;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.75rem !important;
    padding: 0.4rem 1rem !important;
    letter-spacing: 0.5px;
    box-shadow: inset 0 0 10px rgba(0, 209, 255, 0.05);
}

/* Advanced Filter Container */
.os-filter-container {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
}

.aura-input {
    background: rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    border-radius: 8px !important;
    padding: 0.6rem 1rem !important;
    transition: all 0.3s ease !important;
    font-size: 0.9rem !important;
}

.aura-input:focus {
    background: rgba(0, 0, 0, 0.3) !important;
    border-color: var(--aura-secondary) !important;
    box-shadow: 0 0 15px rgba(0, 209, 255, 0.15) !important;
    outline: none !important;
}

.aura-input::placeholder {
    color: rgba(255, 255, 255, 0.2) !important;
}

.text-aura-primary {
    color: var(--aura-secondary) !important;
    letter-spacing: 0.5px;
    font-size: 0.75rem !important;
    margin-bottom: 0.5rem !important;
}

.btn-filter-primary {
    background: var(--aura-secondary-gradient);
    border: none;
    color: white;
    border-radius: 8px;
    padding: 0.6rem 1.25rem;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 209, 255, 0.3);
}

.btn-filter-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 209, 255, 0.4);
    filter: brightness(1.1);
}

.btn-filter-reset {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 8px;
    padding: 0.6rem 1.25rem;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-filter-reset:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

.btn-filter-toggle {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border-radius: 10px !important;
    padding: 0.6rem 1.25rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(5px) !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-filter-toggle:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--aura-secondary) !important;
    color: var(--aura-secondary) !important;
    transform: translateY(-2px);
}

.btn-aura-add {
    background: var(--aura-grad-add) !important;
    border: none !important;
    color: white !important;
    border-radius: 12px !important;
    padding: 0.7rem 1.6rem !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 20px rgba(0, 210, 255, 0.4) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    text-decoration: none !important;
    cursor: pointer;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.btn-aura-add:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 210, 255, 0.6) !important;
    filter: brightness(1.1);
    color: white !important;
}

.btn-aura-add i {
    font-size: 1.1rem;
}

.btn-aura-danger {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%) !important;
    border: none !important;
    color: white !important;
    border-radius: 12px !important;
    padding: 0.7rem 1.6rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 15px rgba(255, 65, 108, 0.4) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.btn-aura-danger:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 65, 108, 0.6) !important;
    filter: brightness(1.1);
    color: white !important;
}

.btn-aura-back {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border-radius: 12px !important;
    padding: 0.7rem 1.6rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(5px) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
}

.btn-aura-back:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--aura-secondary) !important;
    color: var(--aura-secondary) !important;
    transform: translateY(-2px);
}



.btn-aura-add-sm {
    background: var(--aura-primary-gradient) !important;
    border: none !important;
    color: white !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    box-shadow: 0 4px 12px rgba(136, 51, 255, 0.3) !important;
}

.btn-aura-add-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(136, 51, 255, 0.5) !important;
    filter: brightness(1.1);
}

.btn-aura-add-sm:active {
    transform: scale(0.95);
}

/* Pagination Aura Premium */
.pagination-aura {
    display: flex;
    gap: 8px;
    padding: 1rem 0;
    justify-content: center;
}

.pagination-aura .page-item .page-link {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.6) !important;
    border-radius: 10px !important;
    padding: 0.6rem 1rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(5px) !important;
    min-width: 42px;
    text-align: center;
}

.pagination-aura .page-item.active .page-link {
    background: var(--aura-secondary-gradient) !important;
    border-color: transparent !important;
    color: white !important;
    box-shadow: 0 5px 15px rgba(0, 209, 255, 0.4) !important;
}

.pagination-aura .page-item:hover:not(.active) .page-link {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--aura-secondary) !important;
    color: var(--aura-secondary) !important;
    transform: translateY(-2px);
}

.pagination-aura .page-item.disabled .page-link {
    background: rgba(255, 255, 255, 0.01) !important;
    color: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.05) !important;
}

/* Aura Premium Global Form Standards */
.form-control, .form-select, .select2-container--bootstrap4 .select2-selection {
    height: 42px !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--aura-glass-border) !important;
    color: var(--aura-light) !important;
    transition: all 0.3s ease !important;
}

.form-control:focus, .form-select:focus, .select2-container--bootstrap4.select2-container--focus .select2-selection {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--aura-secondary) !important;
    box-shadow: 0 0 15px rgba(0, 209, 255, 0.15) !important;
}

.input-group .btn {
    height: 42px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-aura-add-sm {
    background: var(--aura-primary-gradient) !important;
    border: none !important;
    color: white !important;
    width: 42px !important;
    padding: 0 !important;
    border-radius: 0 10px 10px 0 !important;
    transition: all 0.3s !important;
}

.btn-aura-add-sm:hover {
    filter: brightness(1.2);
    box-shadow: 0 0 15px rgba(136, 51, 255, 0.4);
}
.btn-aura-copy {
    background: rgba(0, 209, 255, 0.1) !important;
    border: 1px solid rgba(0, 209, 255, 0.2) !important;
    color: var(--aura-secondary) !important;
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none !important;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
}

.btn-aura-copy:hover {
    background: var(--aura-secondary) !important;
    color: #000 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 209, 255, 0.3) !important;
}

.btn-aura-copy:active {
    transform: scale(0.95);
}

/* Access Key / Security Token Box */

.aura-access-key-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.aura-access-key-box:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 209, 255, 0.2);
}

.aura-access-key-label {
    font-size: 0.55rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 2px;
    display: block;
}

.aura-access-key-value {
    color: var(--aura-secondary);
    font-weight: 700;
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    letter-spacing: 0.5px;
    word-break: break-all;
}
.aura-card-header-glow {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.aura-card-header-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--aura-primary-gradient);
    opacity: 0.8;
}

.aura-card-header-glow.cyan::after {
    background: var(--aura-secondary-gradient);
}

.aura-card-header-glow.purple::after {
    background: var(--aura-primary-gradient);
}

.aura-icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--aura-light);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.aura-card:hover .aura-icon-circle {
    transform: rotate(10deg) scale(1.1);
    background: rgba(136, 51, 255, 0.1);
    color: var(--aura-primary);
}

.aura-card-header-glow.cyan .aura-icon-circle {
    color: var(--aura-secondary);
}

.aura-card-header-glow.purple .aura-icon-circle {
    color: var(--aura-primary);
}

/* Data Highlighting */
.aura-data-highlight {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.aura-data-highlight:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.btn-aura-action {
    background: var(--aura-secondary-gradient) !important;
    border: none !important;
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 209, 255, 0.3);
}

.btn-aura-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 209, 255, 0.5);
    filter: brightness(1.1);
    color: white !important;
}

.btn-aura-remove {
    background: rgba(255, 69, 58, 0.1) !important;
    border: 1px solid rgba(255, 69, 58, 0.2) !important;
    color: #ff453a !important;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.btn-aura-remove:hover {
    background: #ff453a !important;
    color: white !important;
    box-shadow: 0 0 15px rgba(255, 69, 58, 0.4);
    transform: scale(1.1);
}

.money-readonly {
    background: rgba(255, 255, 255, 0.02) !important;
    border-color: rgba(255, 255, 255, 0.05) !important;
    color: var(--aura-secondary) !important;
    font-weight: 700 !important;
    text-align: right;
    cursor: not-allowed;
}

/* Aura Alerts */
.aura-alert {
    padding: 1rem 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.aura-alert-info {
    background: rgba(0, 209, 255, 0.05);
    border-color: rgba(0, 209, 255, 0.1);
    color: var(--aura-secondary);
}

.aura-alert-warning {
    background: rgba(255, 159, 10, 0.05);
    border-color: rgba(255, 159, 10, 0.1);
    color: #ff9f0a;
}

/* Aura Input Labels */
.input-label-aura {
    font-size: 0.75rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
    transition: all 0.3s;
}

.input-label-aura.required::after {
    content: " *";
    color: #ff453a;
}

/* Wizard Steps Aura Premium */
.wizard-steps-aura {
    display: flex;
    justify-content: space-between;
    margin: 0 auto 40px;
    position: relative;
    padding: 0 10px;
    max-width: 1000px;
}

.wizard-steps-aura::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.wizard-step-aura {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.wizard-step-circle {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--aura-dark-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    font-weight: 800;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 0 8px var(--aura-dark);
}

.wizard-step-aura.active .wizard-step-circle {
    border-color: var(--aura-primary);
    background: rgba(136, 51, 255, 0.1);
    color: var(--aura-primary);
    box-shadow: 0 0 0 6px var(--aura-dark), 0 0 20px rgba(136, 51, 255, 0.2);
    transform: scale(1.15);
}

.wizard-step-aura.completed .wizard-step-circle {
    background: #10B981;
    border-color: #10B981;
    color: white;
    box-shadow: 0 0 0 6px var(--aura-dark);
}

.wizard-step-title {
    font-size: 0.65rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.wizard-step-aura.active .wizard-step-title {
    color: var(--aura-primary);
    opacity: 1;
    transform: translateY(2px);
}

.wizard-step-aura.completed .wizard-step-title {
    color: #10B981;
}

.wizard-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Wizard Navigation Buttons */
.btn-wizard {
    padding: 0.75rem 1.8rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-wizard-next {
    background: var(--aura-primary-gradient) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(136, 51, 255, 0.3);
}

.btn-wizard-next:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(136, 51, 255, 0.5);
}

.btn-wizard-prev {
    background: rgba(255, 255, 255, 0.03) !important;
    color: rgba(255, 255, 255, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.btn-wizard-prev:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: white !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px);
}

/* Aura Utilities & Specific Components */
.text-aura-cyan { color: var(--aura-secondary) !important; }
.text-aura-purple { color: #b19dff !important; }
.select2-purple .select2-container--bootstrap4 .select2-selection,
.select2-purple .select2-container--default .select2-selection--single {
    border-color: rgba(136, 51, 255, 0.15) !important;
}
.select2-purple .select2-container--bootstrap4.select2-container--focus .select2-selection,
.select2-purple .select2-container--default.select2-container--focus .select2-selection--single {
    border-color: rgba(136, 51, 255, 0.5) !important;
    box-shadow: 0 0 15px rgba(136, 51, 255, 0.2) !important;
}

.select2-cyan .select2-container--bootstrap4 .select2-selection,
.select2-cyan .select2-container--default .select2-selection--single {
    border-color: rgba(0, 209, 255, 0.15) !important;
}
.select2-cyan .select2-container--bootstrap4.select2-container--focus .select2-selection,
.select2-cyan .select2-container--default.select2-container--focus .select2-selection--single {
    border-color: rgba(0, 209, 255, 0.5) !important;
    box-shadow: 0 0 15px rgba(0, 209, 255, 0.2) !important;
}

/* Global text contrast fix */
.text-white-50 { color: rgba(255, 255, 255, 0.7) !important; }

.btn-badge-aura {
    background: rgba(136, 51, 255, 0.1) !important;
    border: 1px solid rgba(136, 51, 255, 0.25) !important;
    color: #cbbaff !important;
    border-radius: 6px !important;
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    padding: 3px 12px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: inline-flex !important;
    align-items: center !important;
    cursor: pointer !important;
    margin-right: 4px;
    margin-bottom: 4px;
}

.btn-badge-aura:hover {
    background: rgba(136, 51, 255, 0.3) !important;
    border-color: rgba(136, 51, 255, 0.6) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(136, 51, 255, 0.4) !important;
}

.btn-aura-remove-sm {
    background: rgba(255, 69, 58, 0.05) !important;
    border: 1px solid rgba(255, 69, 58, 0.1) !important;
    color: #ff453a !important;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-size: 0.7rem;
}

.btn-aura-remove-sm:hover {
    background: #ff453a !important;
    color: white !important;
    transform: scale(1.1);
}

/* Aura Wizard - Padrão NFe/Sistema */
.aura-wizard {
    border-bottom: 2px solid var(--aura-glass-border);
    margin-bottom: 30px;
    background: transparent !important;
    gap: 0 !important;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
}

.aura-wizard::-webkit-scrollbar {
    display: none;
}

.aura-wizard .nav-link {
    color: var(--aura-light) !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 15px 25px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
    opacity: 0.5;
    white-space: nowrap;
    position: relative;
    background: transparent !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.aura-wizard .nav-link.active {
    background: transparent !important;
    opacity: 1;
    color: var(--aura-primary) !important;
    transform: translateY(2px);
}

.aura-wizard .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--aura-primary-gradient);
    box-shadow: 0 0 15px rgba(136, 51, 255, 0.5);
    border-radius: 3px 3px 0 0;
}

.aura-wizard .nav-link.completed {
    color: #10B981 !important;
    opacity: 0.8;
}

.aura-wizard .tab-icon {
    font-size: 1.1rem;
}

/* Custom Checkbox Aura Premium */
.custom-check-aura .form-check-input {
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--aura-glass-border);
    width: 1.4em;
    height: 1.4em;
    margin-top: 0;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-check-aura .form-check-input:checked {
    background-color: var(--aura-primary) !important;
    border-color: var(--aura-primary) !important;
    box-shadow: 0 0 15px rgba(136, 51, 255, 0.4) !important;
}

.custom-check-aura .form-check-label {
    padding-left: 10px;
    font-weight: 500;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

.custom-check-aura .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(136, 51, 255, 0.25);
    border-color: var(--aura-primary);
}

/* Global Input/Textarea Focus Fix */
.form-control:focus, .form-select:focus, textarea:focus {
    background-color: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--aura-primary) !important;
    box-shadow: 0 0 15px rgba(136, 51, 255, 0.2) !important;
    color: #fff !important;
}

.table-aura input.form-control-sm:focus {
    border-color: var(--aura-secondary) !important;
    box-shadow: 0 0 10px rgba(0, 209, 255, 0.2) !important;
}

