/* Dark Premium Design for Middlesman.com Escrow Platform */

/* ===== PREMIUM DARK HERO SECTION ===== */
.modern-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.15) 0%, rgba(15, 23, 42, 0.8) 70%);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(147, 197, 253, 0.05));
    animation: float 8s ease-in-out infinite;
    backdrop-filter: blur(1px);
}

.floating-element.element-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.floating-element.element-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 10%;
    animation-delay: 3s;
}

.floating-element.element-3 {
    width: 80px;
    height: 80px;
    bottom: 25%;
    left: 15%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    33% { transform: translateY(-30px) rotate(120deg) scale(1.1); }
    66% { transform: translateY(-15px) rotate(240deg) scale(0.9); }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 2rem;
}

.badge-text {
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.2), rgba(147, 197, 253, 0.1));
    color: #93c5fd;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #93c5fd 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.375rem;
    line-height: 1.7;
    color: #cbd5e1;
    max-width: 600px;
    margin-bottom: 3rem;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    min-width: 120px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border: none;
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary-modern:hover::before {
    left: 100%;
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.4);
    color: white;
}

.btn-outline-modern {
    background: transparent;
    border: 2px solid rgba(59, 130, 246, 0.5);
    color: #93c5fd;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
}

.btn-outline-modern:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

/* ===== PREMIUM FORM CARD ===== */
.hero-form-container {
    position: relative;
    z-index: 2;
}

.form-card {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(40px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
}

.form-subtitle {
    color: #94a3b8;
    font-size: 1.1rem;
    margin: 0;
}

.modern-form .form-group {
    margin-bottom: 2rem;
}

.form-label {
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 0.75rem;
    display: block;
    font-size: 1rem;
}

.radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.radio-option {
    cursor: pointer;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-text {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #cbd5e1;
    background: rgba(59, 130, 246, 0.05);
    text-align: center;
}

.radio-option input[type="radio"]:checked + .radio-custom + .radio-text {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.2);
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.input-group {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(59, 130, 246, 0.3);
    transition: border-color 0.3s ease;
    background: rgba(15, 23, 42, 0.5);
}

.input-group:focus-within {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.input-group-text {
    background: rgba(59, 130, 246, 0.1);
    border: none;
    padding: 16px 20px;
    font-weight: 700;
    color: #93c5fd;
    font-size: 1.1rem;
}

.form-control, .form-select {
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(15, 23, 42, 0.5);
    color: white;
}

.input-group .form-control {
    border: none;
    border-radius: 0;
}

.form-control:focus, .form-select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    outline: none;
    background: rgba(15, 23, 42, 0.8);
}

.form-control::placeholder {
    color: #64748b;
}

.trust-indicators {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
}

.trust-item i {
    color: #3b82f6;
    font-size: 1.1rem;
}

/* ===== PREMIUM ABOUT SECTION ===== */
.modern-about {
    padding: 120px 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    position: relative;
}

.modern-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
}

.about-visual {
    position: relative;
}

.main-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.9) contrast(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4), rgba(29, 78, 216, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.main-image-container:hover .image-overlay {
    opacity: 1;
}

.play-button {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #3b82f6;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.floating-stats {
    position: absolute;
    top: 30px;
    right: -60px;
}

.stat-card {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    min-width: 240px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.stat-card-2 {
    margin-left: -40px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
}

.stat-text {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
}

.about-content .section-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.section-badge .badge-text {
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.2), rgba(147, 197, 253, 0.1));
    color: #93c5fd;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.section-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.feature-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: #94a3b8;
    margin: 0;
    line-height: 1.6;
}

/* ===== PREMIUM SERVICES SECTION ===== */
.modern-services {
    padding: 120px 0;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    height: 400px;
    perspective: 1200px;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.service-card:hover .service-card-inner {
    transform: rotateY(180deg);
}

.service-front, .service-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-front {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-back {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    transform: rotateY(180deg);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.3);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.service-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.service-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.service-excerpt {
    color: #94a3b8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.service-description {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.service-arrow {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.5rem;
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.service-link {
    color: white;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-link:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .floating-stats {
        position: static;
        margin-top: 3rem;
        display: flex;
        gap: 1rem;
        justify-content: center;
    }
    
    .stat-card {
        margin-left: 0 !important;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        justify-content: center;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary-modern,
    .btn-outline-modern {
        justify-content: center;
        width: 100%;
        padding: 16px 24px;
    }
    
    .radio-group {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-card {
        padding: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        height: 350px;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .floating-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .modern-hero,
    .modern-about,
    .modern-services {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    .form-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .feature-icon {
        align-self: center;
    }
    
    .service-front,
    .service-back {
        padding: 2rem;
    }
    
    .stat-card {
        min-width: 180px;
        padding: 1.5rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 90px;
        padding: 0.75rem;
    }
}

/* ===== PREMIUM ANIMATIONS ===== */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.hero-content > * {
    animation: slideInUp 0.8s ease-out forwards;
}

.hero-badge { animation-delay: 0.1s; }
.hero-title { animation-delay: 0.2s; }
.hero-subtitle { animation-delay: 0.3s; }
.hero-stats { animation-delay: 0.4s; }
.hero-buttons { animation-delay: 0.5s; }

.form-card {
    animation: fadeInScale 1s ease-out 0.6s forwards;
    opacity: 0;
}

/* ===== SECURITY BADGES ===== */
.security-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #cbd5e1;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.security-badge i {
    color: #10b981;
    font-size: 1.25rem;
}

/* ===== USER DASHBOARD & FORMS FIX ===== */
/* Fix for user data forms and dashboard pages */
.main-wrapper,
.dashboard-wrapper,
.user-wrapper {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    min-height: 100vh;
}

/* User Data Form Styling */
.card,
.user-card,
.form-card-user {
    background: rgba(15, 23, 42, 0.9) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.2) !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.card-header,
.card-title {
    background: transparent !important;
    color: white !important;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2) !important;
    font-weight: 700 !important;
}

.card-body {
    background: transparent !important;
}

/* Form Input Fixes */
.form-control,
.form-select,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea,
select {
    background: rgba(15, 23, 42, 0.8) !important;
    border: 2px solid rgba(59, 130, 246, 0.3) !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
}

.form-control:focus,
.form-select:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    background: rgba(15, 23, 42, 0.9) !important;
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
    color: white !important;
}

.form-control::placeholder,
input::placeholder,
textarea::placeholder {
    color: #94a3b8 !important;
}

/* Form Labels */
.form-label,
label {
    color: #e2e8f0 !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
}

/* Button Fixes */
.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    border: none !important;
    color: white !important;
    font-weight: 600 !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3) !important;
}

/* Text Color Fixes */
.text-dark,
.text-muted,
p,
span,
div {
    color: #cbd5e1 !important;
}

h1, h2, h3, h4, h5, h6 {
    color: white !important;
}

/* Table Fixes */
.table {
    color: white !important;
    background: transparent !important;
}

.table th {
    color: #e2e8f0 !important;
    background: rgba(59, 130, 246, 0.1) !important;
    border-color: rgba(59, 130, 246, 0.2) !important;
}

.table td {
    color: #cbd5e1 !important;
    border-color: rgba(59, 130, 246, 0.1) !important;
}

/* Alert Fixes */
.alert {
    background: rgba(15, 23, 42, 0.8) !important;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
    color: white !important;
}

/* Modal Fixes */
.modal-content {
    background: rgba(15, 23, 42, 0.95) !important;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
    backdrop-filter: blur(20px) !important;
}

.modal-header,
.modal-footer {
    border-color: rgba(59, 130, 246, 0.2) !important;
}

.modal-title {
    color: white !important;
}

/* Sidebar Fixes */
.sidebar,
.nav-sidebar {
    background: rgba(15, 23, 42, 0.95) !important;
    border-right: 1px solid rgba(59, 130, 246, 0.2) !important;
}

.nav-link {
    color: #cbd5e1 !important;
}

.nav-link:hover,
.nav-link.active {
    color: white !important;
    background: rgba(59, 130, 246, 0.2) !important;
}

/* Dashboard Content Area */
.content-wrapper,
.main-content {
    background: transparent !important;
}

/* Breadcrumb Fixes */
.breadcrumb {
    background: rgba(15, 23, 42, 0.6) !important;
    border-radius: 8px !important;
}

.breadcrumb-item a {
    color: #3b82f6 !important;
}

.breadcrumb-item.active {
    color: #cbd5e1 !important;
}

/* Pagination Fixes */
.page-link {
    background: rgba(15, 23, 42, 0.8) !important;
    border-color: rgba(59, 130, 246, 0.3) !important;
    color: #cbd5e1 !important;
}

.page-link:hover {
    background: rgba(59, 130, 246, 0.2) !important;
    color: white !important;
}

.page-item.active .page-link {
    background: #3b82f6 !important;
    border-color: #3b82f6 !important;
}

/* Dropdown Fixes */
.dropdown-menu {
    background: rgba(15, 23, 42, 0.95) !important;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
    backdrop-filter: blur(20px) !important;
}

.dropdown-item {
    color: #cbd5e1 !important;
}

.dropdown-item:hover {
    background: rgba(59, 130, 246, 0.2) !important;
    color: white !important;
}

/* Badge Fixes */
.badge {
    background: rgba(59, 130, 246, 0.8) !important;
    color: white !important;
}

/* Progress Bar Fixes */
.progress {
    background: rgba(15, 23, 42, 0.6) !important;
}

.progress-bar {
    background: linear-gradient(90deg, #3b82f6, #1d4ed8) !important;
}

/* List Group Fixes */
.list-group-item {
    background: rgba(15, 23, 42, 0.6) !important;
    border-color: rgba(59, 130, 246, 0.2) !important;
    color: #cbd5e1 !important;
}

.list-group-item:hover {
    background: rgba(59, 130, 246, 0.1) !important;
}

/* Specific fix for user data page */
body.user-data-page,
.user-data-wrapper {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
    min-height: 100vh;
}

/* Input group fixes */
.input-group-text {
    background: rgba(59, 130, 246, 0.2) !important;
    border-color: rgba(59, 130, 246, 0.3) !important;
    color: #e2e8f0 !important;
}

/* Select option fixes */
select option {
    background: #1e293b !important;
    color: white !important;
}

/* Checkbox and Radio fixes */
.form-check-input {
    background-color: rgba(15, 23, 42, 0.8) !important;
    border-color: rgba(59, 130, 246, 0.3) !important;
}

.form-check-input:checked {
    background-color: #3b82f6 !important;
    border-color: #3b82f6 !important;
}

.form-check-label {
    color: #e2e8f0 !important;
}
