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

body {
    font-family: 'Outfit', sans-serif;
    background-color: #0B0E14;
    color: #E2E8F0;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Ambient Glow effects in background */
.ambient-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    z-index: -1;
    pointer-events: none;
}

.ambient-glow-2 {
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    bottom: -10%;
    left: -10%;
    z-index: -1;
    pointer-events: none;
}

/* Glassmorphism Header */
.glass-header {
    background: rgba(11, 14, 20, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Bottom Navigation Bar (Glassmorphism Dark) */
.glass-nav {
    background: rgba(15, 19, 28, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Card glassmorphism style matching sef.html form-container */
.glass-card {
    background: rgba(30, 35, 48, 0.4) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
    border-radius: 1rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.3) !important;
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.1) !important;
}

/* Tab button behavior */
.tab-btn.active {
    color: #3b82f6;
    font-weight: 600;
}

.tab-btn.active i {
    transform: scale(1.1);
    color: #3b82f6;
}

.tab-btn {
    color: #94a3b8;
    font-weight: 400;
    transition: all 0.2s ease-in-out;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.25s ease-out;
}

/* Bottom Navigation active indicator */
.nav-link.active {
    color: #3b82f6;
}

.nav-link {
    color: #94a3b8;
    transition: color 0.15s ease-in-out;
}

/* Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hide scrollbar for Chrome, Safari and Opera */
.hide-scroll::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.hide-scroll {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Form inputs styling to match sef.html input override */
.form-input {
    border-radius: 0.5rem;
    background-color: rgba(11, 14, 20, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    width: 100%;
    color: #FFFFFF !important;
    transition: all 0.15s ease-in-out;
    outline: none !important;
}

.form-input::placeholder {
    color: #64748B !important;
}

.form-input:focus {
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2) !important;
}

.form-input option {
    background-color: #151923 !important;
    color: #FFFFFF !important;
}

/* Modal styles with dark theme */
.dark-modal {
    background: rgba(21, 25, 35, 0.95) !important;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #E2E8F0;
}
