﻿/* ----------------------------------------------------------
   TalentP.AI - MAIN STYLE (CLEAN VERSION)
   Odak: Performans, Okunabilirlik ve Ubuntu Font Ailesi
   ----------------------------------------------------------
*/

*
{
    font-family: 'Ubuntu', sans-serif !important;
}

/* 1. TEMEL AYARLAR & FONT */
body
{
    font-family: 'Ubuntu', sans-serif;
    color: #fff; /* Genel metin rengi beyaz */
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Yatay kaydırmayı engelle */
}

.page-wrap
{
    overflow: hidden;
}

/* FA6 için 'fa-solid', 'fa-brands' gibi font-family tanımları gerekir */
.fa, .fas, .far, .fab, .fa-solid, .fa-regular, .fa-brands
{
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}

/* Linkler hover olunca mavi olsun */
a
{
    text-decoration: none;
    transition: all 0.3s ease;
}

    a:hover
    {
        color: #0d6efd;
    }


/* 2. HERO SECTION (Arka Plan & Perde) */
.hero-section
{
    /* Arka plan resmi */
    background-image: url('https://images.pexels.com/photos/764880/pexels-photo-764880.jpeg?w=1260&amp;h=750&amp;auto=compress&amp;cs=tinysrgb');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative; /* Overlay'in buna göre konumlanması için şart */
    width: 100%;
    min-height: 100vh; /* Ekranı tam kapla */
    /* İçeriği dikey ve yatay ortalamak için Flexbox */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

/* Siyah Perde (Overlay) */
.hero-overlay
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.70); /* %70 Karartma */
    z-index: 1; /* En altta, resmin üstünde */
}

.hero__wrapper
{
    position: relative;
    padding: 50px 0 50px;
    z-index: 99;
    min-height: 100vh;
}

@media (min-width: 1401px)
{
    .hero__wrapper
    {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .hero__icon
    {
        font-size: 36px;
        width: 60px;
        height: 60px;
        line-height: 56px;
    }
}

.hero__title
{
    font-size: 30px;
    font-weight: 300;
    color: #fff;
}

@media (min-width: 320px)
{
    .hero__title
    {
        font-size: calc(2.04545vw + 23.45455px);
    }
}

@media (min-width: 1200px)
{
    .hero__title
    {
        font-size: 48px;
    }
}

.hero__title_inner
{
    text-align: center;
}

.hero__text
{
    font-size: 20px;
    font-weight: 300;
    color: #fff;
}

.md-skin-dark
{
    color: rgba(255, 255, 255, .9);
}

/* İçeriğin Perdenin Üstünde Kalması İçin */
.container
{
    position: relative;
    z-index: 10;
}


/* 3. HEADER & LOGO KURTARMA */
/* Navbar veya Logo'nun perdenin altında kalmaması için */
header, .navbar, .header
{
    position: absolute; /* Sayfanın tepesine sabitle */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100 !important; /* Her şeyin üstünde */
    padding: 15px 15px;
    background: transparent;
}

.header__left
{
    display: none;
}

    .header__left > span
    {
        font-weight: 300;
    }

        .header__left > span + span:before
        {
            content: '|';
            display: inline-block;
            margin: 0 40px;
        }

.header__social
{
    text-align: center;
}

    .header__social a
    {
        width: 30px;
        height: 30px;
        line-height: 28px;
        font-size: 12px;
        border-color: rgba(255, 255, 255, .5);
    }

        .header__social a:hover
        {
            background-color: #fff; /* Arka plan beyaz olsun */
            color: #0d6efd !important; /* İkon Rengi: MARKA MAVİSİ (Zorla uygula) */
            border-color: #fff;
            transform: translateY(-3px); /* Ufak bir zıplama efekti de ekledik, şık durur */
        }

@media (min-width: 993px)
{
    .header
    {
        padding: 20px 40px;
        margin-bottom: 0;
    }
}

@media (min-width: 1201px)
{
    .header__left
    {
        display: block;
    }

    .header__social
    {
        text-align: right;
    }
}

@media (min-width: 1401px)
{
    .header
    {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-align: center;
        align-items: center;
        padding: 20px 70px;
    }
}

/* 13. socialicons
--------------------------------------------------------------------------------*/

.social-icon
{
    display: inline-block;
    text-align: center;
    font-size: 16px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 3px;
    border: 1px solid #778;
    margin: 3px;
}

.social-icon__text
{
    margin-left: 6px;
}

.social-icon__rounded
{
    border-radius: 50%;
}

.social-icon__no-border
{
    border: 0;
}

.social-icon.si-linkedin
{
    color: #0e76a8;
}

.social-icon.si-linkedin-bg
{
    color: #fff;
    background-color: #0e76a8;
}

    .social-icon.si-linkedin-bg:hover
    {
        background-color: #0a5579;
    }

.social-icon.si-linkedin-hover:hover
{
    background-color: #0e76a8;
    border-color: #0e76a8;
    color: #fff;
}

.social-icon.si-instagram
{
    color: #3f729b;
}

.social-icon.si-instagram-bg
{
    color: #fff;
    background-color: #3f729b;
}

    .social-icon.si-instagram-bg:hover
    {
        background-color: #305777;
    }

.social-icon.si-instagram-hover:hover
{
    background-color: #3f729b;
    border-color: #3f729b;
    color: #fff;
}

.social-icon.si-paypal
{
    color: #00588b;
}

.social-icon.si-paypal-bg
{
    color: #fff;
    background-color: #00588b;
}

    .social-icon.si-paypal-bg:hover
    {
        background-color: #003858;
    }

.social-icon.si-paypal-hover:hover
{
    background-color: #00588b;
    border-color: #00588b;
    color: #fff;
}

.social-icon.si-stripe
{
    color: #008cdd;
}

.social-icon.si-stripe-bg
{
    color: #fff;
    background-color: #008cdd;
}

    .social-icon.si-stripe-bg:hover
    {
        background-color: #006caa;
    }

.social-icon.si-stripe-hover:hover
{
    background-color: #008cdd;
    border-color: #008cdd;
    color: #fff;
}

/* 4. FORM BİLEŞENLERİ (Premium & Ubuntu Stil) */

/* Input ve Select Kutuları */
.form-control-custom,
.form-select-custom
{
    font-family: 'Ubuntu', sans-serif !important;
    font-size: 1.1rem !important; /* Okunaklı Font */
    height: 55px !important; /* Tok Duruş */
    border-radius: 10px !important;
    padding-left: 20px !important;
    /* Hafif Saydam Beyaz Kenarlık ve Arka Plan */
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    background-color: #fff !important;
    color: #333 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important; /* Derinlik */
}

    /* Input Focus Olunca (Mavi Çerçeve) */
    .form-control-custom:focus,
    .form-select-custom:focus
    {
        border-color: #0d6efd !important;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25) !important;
    }

    /* Placeholder (İpucu Yazısı) */
    .form-control-custom::placeholder
    {
        color: #999 !important; /* Gri ton */
        opacity: 1 !important;
        font-weight: 300 !important;
    }

/* Buton (HABER VER!) */
.btn-custom
{
    font-family: 'Ubuntu', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    height: 55px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 10px 10px 10px 10px !important; /* Sadece sağ tarafı yuvarla (Input group için) */
    z-index: 2;
    margin-left: 2px;
}


/* 5. ÖZEL CHECKBOX (Kibar Kare) */
.custom-checkbox
{
    /* Tarayıcı stilini sıfırla */
    -webkit-appearance: none;
    appearance: none;
    /* Boyutlar */
    min-width: 20px;
    width: 20px;
    height: 20px;
    /* Görünüm */
    border: 2px solid rgba(255,255,255,0.8);
    background-color: transparent;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 3px;
    position: relative;
}

    /* İşaretlendiğinde */
    .custom-checkbox:checked
    {
        background-color: #0d6efd;
        border-color: #0d6efd;
        /* Tik ikonu */
        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 10l3 3l6-6'/%3e%3c/svg%3e");
        background-size: 80%;
        background-position: center;
        background-repeat: no-repeat;
    }

/* ============================================================
   TalentP.AI V2 ADDITIONS - 14 Ocak 2026
   Hero Section: Problem-Solution-Benefit Design
   ============================================================ */

/* ----------------------------------------------------------
   V2.1 - HERO PROBLEM SECTION
   ---------------------------------------------------------- */

.hero__problem
{
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
}

.hero__title--large
{
    font-size: 42px;
    font-weight: 300;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 20px;
}

@media (min-width: 768px)
{
    .hero__title--large
    {
        font-size: 56px;
    }
}

.text-cost
{
    display: inline-block;
    color: #f97316; /* Orange - Attention! */
    font-weight: 700;
    text-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse
{
    0%, 100%
    {
        transform: scale(1);
        opacity: 1;
    }

    50%
    {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.hero__problem-text
{
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    line-height: 1.6;
}

@media (min-width: 768px)
{
    .hero__problem-text
    {
        font-size: 22px;
    }
}

/* ----------------------------------------------------------
   V2.2 - HERO SOLUTION SECTION
   ---------------------------------------------------------- */

.hero__solution
{
    text-align: center;
    margin-bottom: 40px;
    animation: fadeIn 1s ease-out 0.3s backwards;
}

.hero__logo-wrapper
{
    margin-bottom: 20px;
}

.hero__logo
{
    filter: drop-shadow(0 4px 20px rgba(13, 110, 253, 0.4));
    animation: float 3s ease-in-out infinite;
}

@keyframes float
{
    0%, 100%
    {
        transform: translateY(0);
    }

    50%
    {
        transform: translateY(-10px);
    }
}

.hero__subtitle
{
    font-size: 28px;
    font-weight: 300;
    color: #fff;
    line-height: 1.4;
    margin: 0;
}

@media (min-width: 768px)
{
    .hero__subtitle
    {
        font-size: 36px;
    }
}

.hero__subtitle strong
{
    font-weight: 700;
    background: linear-gradient(90deg, #0d6efd, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-brand
{
    color: #0d6efd;
    font-weight: 700;
}

/* ----------------------------------------------------------
   V2.3 - HERO BENEFITS (3 Items)
   ---------------------------------------------------------- */

.hero__benefits
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

@media (max-width: 767px)
{
    .hero__benefits
    {
        flex-direction: column;
        gap: 25px;
    }
}

.benefit-item
{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
}

    .benefit-item:hover
    {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

.benefit-icon
{
    font-size: 24px;
    color: #0d6efd;
    min-width: 24px;
}

.benefit-text
{
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    white-space: nowrap;
}

    .benefit-text strong
    {
        font-weight: 700;
        color: #00d4ff;
    }

@media (min-width: 768px)
{
    .benefit-text
    {
        font-size: 18px;
    }
}

/* ----------------------------------------------------------
   V2.4 - SOCIAL PROOF BAR (Stats)
   ---------------------------------------------------------- */

.social-proof-bar
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 60px;
    padding: 35px 40px;
    background: rgba(13, 110, 253, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(13, 110, 253, 0.3);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.9s backwards;
}

@media (max-width: 991px)
{
    .social-proof-bar
    {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }
}

.stat-item
{
    text-align: center;
    position: relative;
}

.stat-number
{
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #0d6efd;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(13, 110, 253, 0.5);
}

.stat-plus
{
    display: inline;
    font-size: 36px;
    font-weight: 700;
    color: #00d4ff;
    margin-left: -5px;
}

.stat-label
{
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 8px;
    font-weight: 500;
}

.stat-sublabel
{
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    font-style: italic;
}

.stat-divider
{
    width: 1px;
    height: 60px;
    background: linear-gradient( to bottom, transparent, rgba(255, 255, 255, 0.3), transparent );
}

@media (max-width: 991px)
{
    .stat-divider
    {
        width: 60px;
        height: 1px;
        background: linear-gradient( to right, transparent, rgba(255, 255, 255, 0.3), transparent );
    }
}

/* ----------------------------------------------------------
   V2.5 - EXPERT BADGE (Prof. Dr.)
   ---------------------------------------------------------- */

.expert-badge
{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 600px;
    margin: 40px auto 0;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.2), rgba(139, 92, 246, 0.2));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1s ease-out 1.2s backwards;
}

.expert-badge__content
{
    display: flex;
    align-items: center;
    gap: 20px;
}

.expert-badge__icon
{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 24px;
    color: #0d6efd;
}

.expert-badge__text
{
    text-align: left;
}

    .expert-badge__text strong
    {
        display: block;
        font-size: 18px;
        color: #fff;
        font-weight: 700;
        margin-bottom: 4px;
    }

    .expert-badge__text span
    {
        display: block;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.85);
        font-weight: 300;
    }

.expert-badge__credential
{
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 50px;
    font-size: 13px;
    color: #10b981;
    font-weight: 600;
}

    .expert-badge__credential i
    {
        font-size: 14px;
    }

@media (max-width: 575px)
{
    .expert-badge__content
    {
        flex-direction: column;
        text-align: center;
    }

    .expert-badge__text
    {
        text-align: center;
    }
}

/* ----------------------------------------------------------
   V2.6 - ANIMATIONS
   ---------------------------------------------------------- */

@keyframes fadeIn
{
    from
    {
        opacity: 0;
    }

    to
    {
        opacity: 1;
    }
}

@keyframes fadeInDown
{
    from
    {
        opacity: 0;
        transform: translateY(-30px);
    }

    to
    {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp
{
    from
    {
        opacity: 0;
        transform: translateY(30px);
    }

    to
    {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ----------------------------------------------------------
   V2.7 - RESPONSIVE MOBILE TWEAKS
   ---------------------------------------------------------- */

@media (max-width: 575px)
{
    .hero__title--large
    {
        font-size: 32px;
    }

    .text-cost
    {
        display: block;
        margin-top: 10px;
    }

    .hero__subtitle
    {
        font-size: 24px;
    }

    .stat-number
    {
        font-size: 36px;
    }
}

/* ============================================================
   END OF V2 ADDITIONS
   ============================================================ */

/* ============================================================
   V2.8 - DETAILS MODAL STYLING (14 Ocak 2026)
   2-Step Form Modal - Improved Contrast & Interactivity
   ============================================================ */

/* Modal Z-Index Fix (Must be above hero overlay z-index:99) */
#detailsModal
{
    z-index: 10050 !important;
}

.modal-backdrop
{
    z-index: 10040 !important;
}

/* Modal Content */
#detailsModal .modal-content
{
    background-color: #2d2d2d;
    border: 2px solid #555;
    color: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 10051 !important;
}

/* Modal Header */
#detailsModal .modal-header
{
    border-bottom: 1px solid #555;
    background-color: #383838;
}

#detailsModal .modal-title
{
    color: #fff;
}

/* Modal Body */
#detailsModal .modal-body
{
    background-color: #2d2d2d;
}

/* Info Text */
#detailsModal .info-text
{
    color: #ddd;
    font-size: 0.9rem;
}

    #detailsModal .info-text strong
    {
        color: #fff;
    }

/* Form Labels */
#detailsModal .form-label
{
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
}

    #detailsModal .form-label i
    {
        color: #0d6efd;
    }

/* Form Inputs (Text) */
#detailsModal input[type="text"],
#detailsModal input[type="email"]
{
    background-color: #505050; /* Daha açık! */
    border: 2px solid #777; /* Daha belirgin border */
    color: #fff;
    height: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    #detailsModal input[type="text"]:focus,
    #detailsModal input[type="email"]:focus
    {
        background-color: #5a5a5a; /* Focus'ta daha da açık */
        border-color: #0d6efd;
        box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
        outline: 0;
    }

    #detailsModal input[type="text"]::placeholder,
    #detailsModal input[type="email"]::placeholder
    {
        color: #aaa; /* Placeholder daha açık */
        opacity: 1;
    }

/* Form Select */
#detailsModal select
{
    background-color: #505050; /* Daha açık! */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"); /* Beyaz dropdown arrow */
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: 2px solid #777; /* Daha belirgin border */
    color: #fff;
    height: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none; /* Native dropdown arrow kaldır */
    padding-right: 2.5rem; /* Arrow için yer */
}

    #detailsModal select:focus
    {
        background-color: #5a5a5a; /* Focus'ta daha da açık */
        border-color: #0d6efd;
        box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
        outline: 0;
    }

    #detailsModal select option
    {
        background-color: #3d3d3d;
        color: #fff;
        padding: 10px;
    }

/* Helper Text */
#detailsModal .helper-text
{
    color: #bbb;
    font-size: 0.85rem;
}

/* KVKK Checkbox Container */
#detailsModal .kvkk-box
{
    background-color: rgba(13, 110, 253, 0.15);
    border: 1px solid rgba(13, 110, 253, 0.3);
    border-radius: 8px;
}

/* Checkbox */
#detailsModal input[type="checkbox"]
{
    width: 22px;
    height: 22px;
    cursor: pointer;
    border: 2px solid #0d6efd;
    background-color: #3d3d3d;
}

    #detailsModal input[type="checkbox"]:checked
    {
        background-color: #0d6efd;
        border-color: #0d6efd;
    }

/* Checkbox Label */
#detailsModal .checkbox-label
{
    cursor: pointer;
    line-height: 1.6;
    color: #fff;
    font-size: 0.9rem;
}

    #detailsModal .checkbox-label a
    {
        color: #4db8ff !important;
        text-decoration: none;
        font-weight: bold;
    }

        #detailsModal .checkbox-label a:hover
        {
            color: #66c2ff !important;
            text-decoration: underline;
        }

/* Modal Footer */
#detailsModal .modal-footer
{
    border-top: 1px solid #555;
    background-color: #383838;
}

    #detailsModal .modal-footer .btn
    {
        font-weight: 600;
    }

/* ============================================================
   END OF DETAILS MODAL STYLING
   ============================================================ */

/* ============================================================
   SUCCESS MODAL Z-INDEX FIX
   ============================================================ */

#successModal
{
    z-index: 10090 !important; /* HER ŞEYİN ÜSTÜNDE! */
}

    #successModal .modal-content
    {
        z-index: 10091 !important;
        position: relative;
    }

    #successModal .modal-dialog
    {
        z-index: 10091 !important;
    }

    #successModal ~ .modal-backdrop
    {
        z-index: 10089 !important;
    }

/* Loading Overlay da üstte olmalı */
#loadingOverlay
{
    z-index: 10070 !important; /* Her şeyin üstünde */
}


/* ============================================================
   SECRET MODAL (EASTER EGG) Z-INDEX FIX
   ============================================================ */

#secretModal
{
    z-index: 10080 !important; /* Her şeyin üstünde (easter egg special!) */
}

    #secretModal .modal-content
    {
        z-index: 10081 !important;
        position: relative;
    }

    #secretModal .modal-dialog
    {
        z-index: 10081 !important;
    }

    /* Secret modal için özel backdrop */
    #secretModal ~ .modal-backdrop
    {
        z-index: 10079 !important;
    }


/* ============================================================
   KVKK MODAL STYLING & Z-INDEX
   ============================================================ */

#kvkkModal
{
    z-index: 10070 !important; /* Success modal üstünde */
}

    #kvkkModal .modal-content
    {
        z-index: 10071 !important;
        position: relative;
    }

    #kvkkModal .modal-dialog
    {
        z-index: 10071 !important;
    }

    /* KVKK modal için backdrop */
    #kvkkModal ~ .modal-backdrop
    {
        z-index: 10069 !important;
    }

/* ============================================================
   NUCLEAR FIX - DETAILS MODAL ABSOLUTE PRIORITY
   ============================================================ */

/* Override EVERYTHING */
#detailsModal *
{
    pointer-events: all !important;
    cursor: auto !important;
}

#detailsModal input,
#detailsModal select,
#detailsModal button,
#detailsModal a,
#detailsModal label,
#detailsModal .form-check-input
{
    pointer-events: all !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 1 !important;
}

#detailsModal .modal-dialog
{
    pointer-events: all !important;
    z-index: 10052 !important;
}

#detailsModal .modal-content
{
    pointer-events: all !important;
    z-index: 10053 !important;
}

#detailsModal .modal-body
{
    pointer-events: all !important;
}

/* Backdrop must be BELOW */
.modal-backdrop
{
    pointer-events: none !important;
}

#detailsModal ~ .modal-backdrop
{
    pointer-events: all !important;
    z-index: 10049 !important;
}
