.select2:not(.select2-container--bootstrap-5) .form-select {
    padding: 0;
    background-image: none;
}

:root {
    --primary-gradient: linear-gradient(135deg, #1a237e 0%, #283593 40%, #1565c0 100%);
    --primary-gradient-hover: linear-gradient(135deg, #0d1b3e 0%, #1a237e 100%);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 40px rgba(0, 0, 0, 0.16);
}

body {
    background: #f4f6fb;
    color: #1e293b;
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
}

.content {
    min-height: auto !important;
    padding-bottom: 2rem;
}

.bg-gradient-primary {
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
}

.bg-gradient-primary h1,
.bg-gradient-primary h2,
.bg-gradient-primary h3,
.bg-gradient-primary h4,
.bg-gradient-primary h5,
.bg-gradient-primary h6,
.bg-gradient-primary .display-1,
.bg-gradient-primary .display-2,
.bg-gradient-primary .display-3,
.bg-gradient-primary .display-4,
.bg-gradient-primary .display-5,
.bg-gradient-primary .display-6 {
    color: #ffffff !important;
}

.bg-gradient-primary .text-muted,
.bg-gradient-primary .text-body-secondary,
.bg-gradient-primary .lead {
    color: rgba(255, 255, 255, 0.9) !important;
}

.bg-gradient-primary small,
.bg-gradient-primary .small {
    color: rgba(255, 255, 255, 0.8);
}

.navbar {
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #ffffff !important;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    transition: all 0.2s ease;
    border-radius: 8px;
    margin: 0 4px;
    padding: 8px 16px !important;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.12);
}

.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 8px;
    margin-top: 8px;
    z-index: 1200;
    min-width: 150px;
}

.dropdown-item {
    border-radius: 8px;
    transition: all 0.2s ease;
    padding: 0.5rem 1rem;
    color: #1e293b;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #1a237e 0%, #1565c0 100%);
    color: white;
}

.card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    border-radius: 16px;
    overflow: hidden;
}

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

.card h5 {
    color: #1a237e;
    font-weight: 700;
}

.card .text-body-secondary,
.card .card-text {
    color: #475569 !important;
}

.btn {
    border-radius: 10px;
    font-weight: 600;
    padding: 12px 24px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

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

.btn-primary {
    background: var(--primary-gradient);
    border: none;
}

.btn-primary:hover {
    background: var(--primary-gradient-hover);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.form-control, .form-control-lg {
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    padding: 12px 16px;
}

.form-control:focus, .form-control-lg:focus {
    border-color: #1565c0;
    box-shadow: 0 0 0 0.2rem rgba(21, 101, 192, 0.2);
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

.text-muted {
    color: #64748b !important;
}

.text-body-secondary {
    color: #475569 !important;
}

.form-text {
    color: #64748b !important;
}

h1, h2, h3, h4, h5, h6 {
    color: #0f172a;
}

.lead {
    color: #334155;
}

.u-overflow-hidden {
    overflow: hidden;
}

.u-z-1 {
    z-index: 1;
}

.u-badge-pill-sm {
    font-size: 0.9rem;
    border-radius: 50px;
}

.u-text-opacity-95 {
    opacity: 0.95;
}

.u-card-rounded-20 {
    border-radius: 20px;
}

.u-radius-12 {
    border-radius: 12px;
}

.u-btn-padding-14 {
    padding: 14px;
}

.u-input-padding-lg {
    padding: 14px 18px;
}

.u-line-height-12 {
    line-height: 1.2;
}

.u-line-height-18 {
    line-height: 1.8;
}

.u-anim-delay-02 {
    animation-delay: 0.2s;
}

.u-anim-delay-01 {
    animation-delay: 0.1s;
}

.u-filter-shadow-strong {
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.u-filter-shadow-soft {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.u-hero-circle {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

.u-card-soft-gradient {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9ff 100%);
}

.u-gradient-text {
    background: linear-gradient(135deg, #1a237e 0%, #1565c0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #1a237e;
}

.u-heading-xl {
    font-size: 2.5rem;
}

.u-text-block-narrow {
    max-width: 600px;
    margin: 0 auto;
}

.u-alert-info-gradient {
    border-radius: 12px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.u-disabled-block {
    pointer-events: none;
    opacity: 0.6;
}

.u-textarea-main {
    font-size: 1rem;
    line-height: 1.8;
    resize: vertical;
    min-height: 200px;
}

.u-upload-dropzone {
    border: 2px dashed #cbd5e1 !important;
    background: #f8fafc;
    transition: all 0.3s ease;
    cursor: pointer;
}

.u-upload-dropzone-disabled {
    pointer-events: none;
    opacity: 0.6;
    cursor: not-allowed;
}

.u-cursor-pointer {
    cursor: pointer;
}

.u-btn-hero-primary {
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 1.1rem;
}

.u-button-shine {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

@media (max-width: 991.98px) {
    .u-heading-xl {
        font-size: 1.75rem;
    }

    .display-4 {
        font-size: 2rem !important;
    }

    .lead {
        font-size: 1.1rem !important;
    }
}
