:root {
    --vault-primary: #2563eb;
    --vault-secondary: #7c3aed;
    --vault-accent: #06b6d4;
    --vault-success: #10b981;
    --vault-warning: #f59e0b;
    --vault-danger: #ef4444;
    --vault-dark: #0f172a;
    --vault-gray: #64748b;
    --vault-light: #f8fafc;
    --vault-gradient: linear-gradient(135deg, var(--vault-primary) 0%, var(--vault-secondary) 50%, var(--vault-accent) 100%);
    --vault-gradient-soft: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 50%, rgba(6, 182, 212, 0.1) 100%);
    --vault-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --vault-shadow-lg: 0 35px 60px -12px rgba(0, 0, 0, 0.3);
    --vault-border-radius: 16px;
    --vault-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--vault-dark);
    color: white;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animated Background */
.vault-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--vault-dark);
    z-index: -2;
}

.vault-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--vault-gradient);
    opacity: 0.05;
    animation: gradientShift 15s ease-in-out infinite;
}

.vault-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    animation: floatingOrbs 20s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
    33% { transform: translateX(-20px) translateY(-10px) rotate(120deg); }
    66% { transform: translateX(20px) translateY(10px) rotate(240deg); }
}

@keyframes floatingOrbs {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

/* Header Styles */
.vault-header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(125, 0, 150, 0.1);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.vault-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--vault-gradient);
    opacity: 0.1;
    z-index: -1;
}

.vault-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--vault-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 1rem;
    animation: titlePulse 4s ease-in-out infinite;
}

.vault-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Status Indicators */
.vault-status {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.status-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--vault-transition);
    font-weight: 500;
}

.status-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--vault-shadow);
}

.status-badge.online {
    border-color: var(--vault-success);
    color: var(--vault-success);
}

.status-badge.offline {
    border-color: var(--vault-danger);
    color: var(--vault-danger);
}

.status-badge.syncing {
    border-color: var(--vault-accent);
    color: var(--vault-accent);
}

/* Sidebar Styles */
.vault-sidebar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 100vh;
    padding: 2rem 0;
    position: relative;
}

.vault-nav {
    padding: 0 1rem;
}

.vault-nav-item {
    margin-bottom: 0.5rem;
}

.vault-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: var(--vault-border-radius);
    transition: var(--vault-transition);
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.vault-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--vault-gradient);
    opacity: 0;
    transition: var(--vault-transition);
    z-index: -1;
}

.vault-nav-link:hover {
    color: white;
    transform: translateX(5px);
}

.vault-nav-link:hover::before {
    left: 0;
    opacity: 0.1;
}

.vault-nav-link.active {
    color: white;
    background: var(--vault-gradient-soft);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vault-nav-link.active::before {
    left: 0;
    opacity: 0.2;
}

.vault-nav-icon {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

/* Main Content */
.vault-content {
    padding: 2rem;
    min-height: 100vh;
}

.vault-section {
    display: none;
    animation: fadeInUp 0.6s ease-out;
}

.vault-section.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vault-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: var(--vault-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Card Styles */
.vault-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--vault-border-radius);
    padding: 2rem;
    transition: var(--vault-transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.vault-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--vault-gradient);
    transform: scaleX(0);
    transition: var(--vault-transition);
}

.vault-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--vault-shadow-lg);
    border-color: rgba(255, 255, 255, 0.2);
}

.vault-card:hover::before {
    transform: scaleX(1);
}

.vault-card-icon {
    font-size: 3rem;
    background: var(--vault-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    display: block;
}

.vault-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.vault-card-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Code Display */
.vault-code-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.vault-code-block {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--vault-border-radius);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.vault-code-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--vault-gradient);
}

.vault-code-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.vault-code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #e2e8f0;
    background: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
}

.vault-code .highlight {
    color: #60a5fa;
    font-weight: 500;
}

.vault-code .string {
    color: #34d399;
}

.vault-code .comment {
    color: #9ca3af;
    font-style: italic;
}

/* Table Styles */
.vault-table-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--vault-border-radius);
    padding: 2rem;
    margin: 2rem 0;
}

.tabulator {
    background: transparent !important;
    border: none !important;
}

.tabulator .tabulator-header {
    background: var(--vault-gradient) !important;
    border: none !important;
}

.tabulator .tabulator-col {
    background: transparent !important;
    border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

.tabulator .tabulator-row {
    background: rgba(255, 255, 255, 0.02) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    color: rgba(0, 0, 0, 0.9) !important;
}

.tabulator .tabulator-row:hover {
    background: rgba(255, 255, 255, 0.05) !important;
}

/* Button Styles */
.vault-btn {
    background: var(--vault-gradient);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--vault-transition);
    cursor: pointer;
    font-size: 1rem;
}

.vault-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--vault-shadow);
    color: white;
}

.vault-btn-outline {
    background: transparent;
    border: 2px solid;
    border-image: var(--vault-gradient) 1;
    color: white;
}

.vault-btn-outline:hover {
    background: var(--vault-gradient-soft);
}

/* Form Styles */
.vault-form-group {
    margin-bottom: 2rem;
}

.vault-label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.vault-input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--vault-border-radius);
    color: white;
    font-size: 1rem;
    transition: var(--vault-transition);
}

.vault-input:focus {
    outline: none;
    border-color: var(--vault-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: rgba(255, 255, 255, 0.1);
}

.vault-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Modal Styles */
.modal-content {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--vault-border-radius);
    color: white;
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-close {
    filter: invert(1);
}

/* Calendar Styles */
.fc {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: var(--vault-border-radius);
    padding: 1rem;
}

.fc-toolbar {
    color: white !important;
}

.fc-day {
    background: rgba(255, 255, 255, 0.02) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.fc-day:hover {
    background: rgba(255, 255, 255, 0.05) !important;
}

.fc-event {
    background: var(--vault-gradient) !important;
    border: none !important;
}

/* Statistics Cards */
.vault-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.vault-stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--vault-border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--vault-transition);
    position: relative;
    overflow: hidden;
}

.vault-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--vault-gradient);
}

.vault-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--vault-shadow);
}

.vault-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--vault-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 0.5rem;
}

.vault-stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 500;
}

/* Sync Animation */
.vault-sync-icon {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Declarative Example */
.vault-declarative {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: var(--vault-border-radius);
    padding: 2rem;
    margin: 2rem 0;
}

.vault-declarative-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--vault-accent);
    font-weight: 600;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vault-title {
        font-size: 2.5rem;
    }

    .vault-subtitle {
        font-size: 1.2rem;
    }

    .vault-status {
        gap: 1rem;
    }

    .vault-code-container {
        grid-template-columns: 1fr;
    }

    .vault-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: var(--vault-gradient);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--vault-primary);
}

/* Ripple Effect */
@keyframes ripple-animation {
    to {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}
/* Add these styles to Part 3 after the existing CSS */

/* Dynamic Forms Styles */
.form-builder-palette {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--vault-border-radius);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-component-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    cursor: grab;
    transition: var(--vault-transition);
    margin-bottom: 0.5rem;
}

.form-component-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--vault-primary);
    transform: translateY(-2px);
}

.form-component-item:active {
    cursor: grabbing;
}

.form-component-item i {
    font-size: 1.2rem;
    color: var(--vault-accent);
    margin-bottom: 0.5rem;
    display: block;
}

.form-component-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.form-drop-zone {
    background: rgba(0, 0, 0, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: var(--vault-border-radius);
    min-height: 400px;
    padding: 2rem;
    transition: var(--vault-transition);
    position: relative;
}

.form-drop-zone.drag-over {
    border-color: var(--vault-primary);
    background: rgba(37, 99, 235, 0.1);
}

.form-drop-placeholder {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.form-drop-placeholder.hidden {
    display: none;
}

.dynamic-form {
    max-width: none;
}

.dynamic-form .vault-form-group {
    margin-bottom: 1.5rem;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--vault-primary);
}

.rating-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rating-group input[type="radio"] {
    display: none;
}

.rating-group label {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--vault-transition);
    color: rgba(255, 255, 255, 0.8);
}

.rating-group label:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--vault-primary);
}

.rating-group input[type="radio"]:checked + label {
    background: var(--vault-gradient-soft);
    border-color: var(--vault-primary);
    color: white;
}

/* Database Integration Styles */
.database-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--vault-border-radius);
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: var(--vault-transition);
    height: 100%;
}

.database-option:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--vault-primary);
    transform: translateY(-3px);
}

.database-option.active {
    background: var(--vault-gradient-soft);
    border-color: var(--vault-primary);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.database-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--vault-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.database-option h6 {
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.database-option small {
    color: rgba(255, 255, 255, 0.6);
    display: block;
    margin-bottom: 1rem;
}

.database-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.database-status i {
    font-size: 0.7rem;
}

/* Database Console Styles */
.database-console {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--vault-border-radius);
    padding: 1.5rem;
}

.console-output {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 1rem;
    max-height: 200px;
    overflow-y: auto;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.4;
}

.console-line {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.console-timestamp {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.console-info {
    background: var(--vault-accent);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.console-success {
    background: var(--vault-success);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.console-error {
    background: var(--vault-danger);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.console-warning {
    background: var(--vault-warning);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Form Drag and Drop Animations */
.form-component-dragging {
    opacity: 0.5;
    transform: rotate(5deg);
}

.dropped-component {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    position: relative;
    transition: var(--vault-transition);
}

.dropped-component:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--vault-primary);
}

.component-controls {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    display: flex;
    gap: 0.25rem;
    opacity: 0;
    transition: var(--vault-transition);
}

.dropped-component:hover .component-controls {
    opacity: 1;
}

.component-control {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: var(--vault-transition);
}

.component-control.edit {
    background: var(--vault-accent);
}

.component-control.delete {
    background: var(--vault-danger);
}

.component-control:hover {
    transform: scale(1.1);
}

/* Dropdown Menu Dark Theme */
.dropdown-menu-dark {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--vault-border-radius);
}

.dropdown-menu-dark .dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--vault-transition);
}

.dropdown-menu-dark .dropdown-item:hover {
    background: var(--vault-gradient-soft);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-builder-palette {
        margin-bottom: 2rem;
    }
    
    .form-drop-zone {
        min-height: 300px;
    }
    
    .database-option {
        margin-bottom: 1rem;
    }
    
    .console-output {
        font-size: 0.8rem;
        max-height: 150px;
    }
    
    .checkbox-group,
    .rating-group {
        gap: 0.5rem;
    }
}
/* Add this CSS to fix dropdown visibility issues */

/* Select dropdown options styling */
.vault-input option {
    background: var(--vault-dark) !important;
    color: white !important;
    padding: 0.5rem !important;
}

/* Alternative approach - force dark background for all select options */
select.vault-input option {
    background-color: #1e293b !important;
    color: #ffffff !important;
}

/* For browsers that support it, style the select dropdown */
select.vault-input {
    background: rgba(255, 255, 255, 0.05) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* WebKit browsers (Chrome, Safari, Edge) */
select.vault-input option:hover {
    background: var(--vault-primary) !important;
    color: white !important;
}

/* Firefox specific */
@-moz-document url-prefix() {
    select.vault-input option {
        background: #1e293b !important;
        color: white !important;
    }
}

/* More specific targeting for form selects */
.vault-form select,
.dynamic-form select,
form select.vault-input {
    background: rgba(255, 255, 255, 0.05) !important;
    color: white !important;
}

.vault-form select option,
.dynamic-form select option,
form select.vault-input option {
    background: #1e293b !important;
    color: white !important;
    padding: 8px !important;
}

/* Target the specific selects in your forms */
select[name="industry"] option,
select[name="status"] option,
select[name="recommend"] option {
    background: #1e293b !important;
    color: white !important;
}

/* Bootstrap dropdown menu fixes */
.dropdown-menu {
    background: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.8) !important;
}

.dropdown-item:hover {
    background: var(--vault-gradient-soft) !important;
    color: white !important;
}

/* Additional fix for any remaining white-on-white issues */
.vault-input:focus option {
    background: var(--vault-dark) !important;
    color: white !important;
}

/* Elegant Flowing Effects - Subtle & Professional */

/* Gentle wave separator for header */
.wave-section::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 100%;
    height: 30px;
    background: var(--vault-dark);
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
    opacity: 0.8;
}

/* Subtle organic card shapes - barely noticeable curves */
.flowing-card {
    border-radius: 20px 25px 22px 28px;
    position: relative;
    overflow: hidden;
}

.flowing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--vault-gradient);
    border-radius: 0 0 50% 50%;
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.flowing-card:hover::before {
    transform: scaleX(1);
}

/* Gentle flowing grid - very subtle offset */
.liquid-grid .vault-card:nth-child(odd) {
    transform: translateY(-8px);
}

.liquid-grid .vault-card:nth-child(even) {
    transform: translateY(8px);
}

/* Soft curved shadows */
.vault-card {
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.3),
                0 5px 15px -5px rgba(37, 99, 235, 0.1);
    filter: drop-shadow(0 0 20px rgba(37, 99, 235, 0.05));
}

/* Organic status badges */
.status-badge {
    border-radius: 25px 30px 25px 30px;
}

/* Curved section transitions */
.vault-content {
    position: relative;
}

.vault-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(135deg, transparent 0%, var(--vault-dark) 100%);
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

/* Gentle button curves */
.vault-btn {
    border-radius: 30px 25px 30px 25px;
    position: relative;
    overflow: hidden;
}

.vault-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s;
}

.vault-btn:hover::before {
    left: 100%;
}

/* Flowing navigation items */
.vault-nav-link {
    border-radius: 15px 20px 15px 20px;
    position: relative;
}

.vault-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--vault-gradient);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.vault-nav-link:hover::after,
.vault-nav-link.active::after {
    width: 80%;
}

/* Organic table container */
.vault-table-container {
    border-radius: 25px 30px 25px 30px;
    position: relative;
}

.vault-table-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--vault-gradient);
    border-radius: 27px 32px 27px 32px;
    z-index: -1;
    opacity: 0.3;
}

/* Gentle stat card curves */
.vault-stat-card {
    border-radius: 20px 25px 20px 25px;
    position: relative;
}

.vault-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--vault-gradient);
    border-radius: 0 0 50% 50%;
}

/* Flowing modal */
.modal-content {
    border-radius: 25px 30px 25px 30px;
}

/* Organic form inputs */
.vault-input {
    border-radius: 15px 18px 15px 18px;
    transition: all 0.3s ease;
}

.vault-input:focus {
    border-radius: 20px 15px 20px 15px;
}

/* Subtle floating animation */
.vault-card {
    animation: gentleFloat 6s ease-in-out infinite;
}

.vault-card:nth-child(odd) {
    animation-delay: -3s;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

/* Curved calendar */
.fc {
    border-radius: 20px 25px 20px 25px;
}

/* Flowing declarative example */
.vault-declarative {
    border-radius: 18px 22px 18px 22px;
    border-left: 4px solid transparent;
    border-image: var(--vault-gradient) 1;
    border-image-slice: 1;
}

/* Gentle code block curves */
.vault-code-block {
    border-radius: 18px 22px 18px 22px;
}

.vault-code {
    border-radius: 12px 15px 12px 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .liquid-grid .vault-card:nth-child(odd),
    .liquid-grid .vault-card:nth-child(even) {
        transform: translateY(0);
    }
    
    .vault-card {
        border-radius: 15px 18px 15px 18px;
    }
}
* Add these styles to match your existing vault theme */
.vault-feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 50%;
    font-size: 1.2em;
}

.vault-stat-number {
    font-family: 'Inter', sans-serif;
    text-shadow: 0 0 20px currentColor;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    #transformationBtn {
        font-size: 1.1em !important;
        padding: 15px 30px !important;
        letter-spacing: 1px !important;
    }
    
    .vault-stat-number {
        font-size: 2.5em !important;
    }
}