/* ========================================
   Startthegame – Custom CSS
   Bootstrap 5.3.3 override & animations
   ======================================== */

:root {
    --primary: #010080;
    --primary-h: #0100B3;
    --accent: #FFBC42;
    --accent-h: #FFD073;
    --light-bg: #F5F5F7;
    --success: #4CAF50;
    --danger-c: #E53E3E;
    --border-r: 0.625rem;
}

/* ── Animations ── */
@keyframes float-up {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes float-down {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(15px) rotate(-10deg);
    }
}

@keyframes spin-slow {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse-scale {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.float-up {
    animation: float-up 4s ease-in-out infinite;
}

.float-down {
    animation: float-down 3s ease-in-out infinite;
}

.spin-slow {
    animation: spin-slow 20s linear infinite;
}

.pulse-anim {
    animation: pulse-scale 3s ease-in-out infinite;
}

/* ── Scroll animations ── */
.anim {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .6s ease, transform .6s ease;
}

    .anim.visible {
        opacity: 1;
        transform: translateY(0);
    }

.anim-scale {
    opacity: 0;
    transform: scale(.92);
    transition: opacity .6s ease, transform .6s ease;
}

    .anim-scale.visible {
        opacity: 1;
        transform: scale(1);
    }

/* stagger delays */
.delay-1 {
    transition-delay: .15s;
}

.delay-2 {
    transition-delay: .30s;
}

.delay-3 {
    transition-delay: .45s;
}

.delay-4 {
    transition-delay: .60s;
}

.delay-5 {
    transition-delay: .75s;
}

.delay-6 {
    transition-delay: .90s;
}

/* ── Hero ── */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.text-accent {
    color: var(--accent);
}

.text-primary-c {
    color: var(--primary);
}

.bg-light-bg {
    background-color: var(--light-bg);
}

/* ── Card hover ── */
.card-hover {
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    cursor: default;
}

    .card-hover:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 60px rgba(1,0,128,.15) !important;
    }

/* ── Buttons ── */
.btn-pill {
    border-radius: 999px;
    padding: .7rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all .25s;
}

.btn-pill-lg {
    border-radius: 999px;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all .25s;
}

.btn-deep-blue {
    background: var(--primary);
    color: #fff;
    border: none;
    box-shadow: 0 4px 20px rgba(1,0,128,.25);
}

    .btn-deep-blue:hover {
        background: var(--primary-h);
        color: #fff;
        transform: scale(1.04);
        box-shadow: 0 6px 24px rgba(1,0,128,.35);
    }

    .btn-deep-blue:focus,
    .btn-deep-blue:focus-visible,
    .btn-deep-blue:active {
        background: var(--primary);
        color: #fff;
        box-shadow: 0 4px 20px rgba(1,0,128,.25);
    }

    .btn-deep-blue:disabled,
    .btn-deep-blue[disabled] {
        background: var(--primary) !important;
        color: #fff !important;
        border-color: transparent !important;
        box-shadow: 0 4px 20px rgba(1,0,128,.25);
        opacity: .75;
    }

.btn-accent {
    background: var(--accent);
    color: var(--primary);
    border: none;
    box-shadow: 0 4px 20px rgba(255,188,66,.35);
}

    .btn-accent:hover {
        background: var(--accent-h);
        color: var(--primary);
        transform: scale(1.04);
    }

    .btn-accent:focus,
    .btn-accent:focus-visible,
    .btn-accent:active {
        background: var(--accent);
        color: var(--primary);
        box-shadow: 0 4px 20px rgba(255,188,66,.35);
    }

/* ── Badge / chip ── */
.chip {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .35rem 1rem;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 500;
}

.chip-primary {
    background: rgba(1,0,128,.1);
    color: var(--primary);
    border: 2px solid rgba(1,0,128,.2);
}

/* ── Section padding ── */
.section-py {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* ── Step card ── */
.step-badge {
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-h));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255,188,66,.4);
}

/* ── Icon box ── */
.icon-box {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ── CTA dark card ── */
.cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-h) 100%);
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(1,0,128,.35);
}

.cta-deco-right {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--accent);
    opacity: .2;
    font-size: 6rem;
}

.cta-deco-left {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: #fff;
    opacity: .1;
    font-size: 5rem;
}

/* ── Demo modal ── */
.modal-content {
    border-radius: 1.5rem;
    border: none;
}

.form-input {
    padding: .9rem 1rem .9rem 3rem;
    border-radius: 1rem;
    border: 2px solid #e5e5e5;
    background: var(--light-bg);
    outline: none;
    width: 100%;
    transition: border-color .2s;
    font-size: .95rem;
}

    .form-input:focus {
        border-color: var(--primary);
    }

.form-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
}

.form-textarea {
    padding: .9rem 1rem;
    border-radius: 1rem;
    border: 2px solid #e5e5e5;
    background: var(--light-bg);
    outline: none;
    width: 100%;
    resize: none;
    transition: border-color .2s;
    font-size: .95rem;
}

    .form-textarea:focus {
        border-color: var(--primary);
    }

/* ── Scroll to top ── */
#scrollTop {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 2.8rem;
    height: 2.8rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(1,0,128,.35);
    cursor: pointer;
    z-index: 9999;
    transition: opacity .25s, transform .25s;
}

    #scrollTop:hover {
        transform: scale(1.1);
    }

/* ── Responsive ── */
@media (max-width: 767px) {
    .hero-section {
        min-height: 80vh;
    }
}

/******************************************/

/* ── Hero section ── */
.company-hero-padding {
    padding-top: 5rem;
    padding-bottom: 4rem;
}

.company-hero-deco-trophy {
    top: 8rem;
    left: 8%;
    opacity: .15;
    font-size: 4rem;
    color: #FFBC42;
}

.company-hero-deco-code {
    bottom: 2rem;
    right: 10%;
    opacity: .08;
    font-size: 5rem;
    color: #010080;
}

.company-hero-content {
    z-index: 2;
    max-width: 60rem;
    margin: 0 auto;
    padding-top: 4rem;
}

.company-hero-heading {
    font-size: clamp(2rem, 5.5vw, 4.2rem);
    font-weight: 400;
    line-height: 1.2;
}

.company-hero-desc {
    max-width: 44rem;
}

.company-hero-fade {
    height: 6rem;
    background: linear-gradient(to top, #F5F5F7, transparent);
    pointer-events: none;
}

/* ── Çözümler section ── */
.company-sol-card-primary {
    border-color: rgba(1,0,128,.25) !important;
}

.company-sol-card-accent {
    border-color: rgba(255,188,66,.4) !important;
}

.company-sol-icon-primary {
    background: rgba(1,0,128,.12);
    border: 2px solid rgba(1,0,128,.2);
}

.company-sol-icon-accent {
    background: rgba(255,188,66,.15);
    border: 2px solid rgba(255,188,66,.4);
}

/* ── Platform özellikleri section ── */
.company-feat-icon-accent {
    background: rgba(255,188,66,.12);
}

.company-feat-icon-primary {
    background: rgba(1,0,128,.1);
}

/* ── Nasıl çalışır section ── */
.company-step-card-primary {
    border-color: rgba(1,0,128,.25) !important;
}

.company-step-card-accent {
    border-color: rgba(255,188,66,.4) !important;
}

.company-step-icon-primary {
    background: rgba(1,0,128,.12);
    border: 2px solid rgba(1,0,128,.2);
}

.company-step-icon-accent {
    background: rgba(255,188,66,.15);
    border: 2px solid rgba(255,188,66,.4);
}

/* ── CTA section ── */
.company-cta-inner {
    z-index: 2;
}

.company-cta-desc {
    max-width: 36rem;
    opacity: .9;
}

/* ── Modal section ── */
.company-modal-success-icon {
    width: 5rem;
    height: 5rem;
    background: #d1fae5;
}

.company-modal-disclaimer {
    font-size: .82rem;
}

/* ── Wrong-Hire Cost Stats ── */
.company-cost-stats { text-align: center; }

.company-cost-stats-title {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--primary);
    opacity: .55;
    margin-bottom: 1rem;
}

.company-cost-card {
    background: var(--light-bg);
    border: 2px solid #e5e5e5;
    border-radius: 1rem;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    transition: transform .3s ease, box-shadow .3s ease;
}

.company-cost-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(1,0,128,.12);
}

.company-cost-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.company-cost-icon-primary { color: var(--primary); }
.company-cost-icon-accent  { color: var(--accent);  }

.company-cost-value {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.company-cost-value-primary { color: var(--primary); }
.company-cost-value-accent  { color: var(--accent);  }

.company-cost-arrow { font-size: 1.4rem; }

.company-cost-label {
    font-size: .85rem;
    color: var(--primary);
    opacity: .65;
}

/* ============================================================
   Company Auth Pages (Login / Register) — Bootstrap overrides
   ============================================================ */
.cp-auth :root,
.cp-auth-page {
    --bs-primary: #000080;
    --bs-primary-rgb: 0, 0, 128;
    --bs-link-color: #000080;
    --bs-link-color-rgb: 0, 0, 128;
    --bs-link-hover-color: #000099;
}

.cp-auth-page .btn-primary {
    --bs-btn-bg: #000080;
    --bs-btn-border-color: #000080;
    --bs-btn-hover-bg: #000099;
    --bs-btn-hover-border-color: #000099;
    --bs-btn-active-bg: #000070;
    --bs-btn-active-border-color: #000070;
    --bs-btn-disabled-bg: #000080;
    --bs-btn-disabled-border-color: #000080;
}

.cp-auth-page .form-control,
.cp-auth-page .form-select {
    background-color: #f3f3f5;
    border-color: #e5e7eb;
}

.cp-auth-page .form-control:focus,
.cp-auth-page .form-select:focus {
    background-color: #f3f3f5;
    border-color: #000080;
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 128, .15);
}

.cp-auth-page .form-check-input:checked {
    background-color: #000080;
    border-color: #000080;
}

.cp-auth-page .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 128, .15);
}

.cp-auth-page .link-primary {
    color: #000080 !important;
}

.cp-pwd-wrapper {
    position: relative;
}

.cp-pwd-wrapper .cp-toggle-pwd {
    position: absolute;
    right: .75rem;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    font-size: 1rem;
}

.cp-pwd-wrapper .cp-toggle-pwd:hover {
    color: #000080;
}

/* ============================================================
   Company Panel — Variables, Layout & Components (cp-*)
   ============================================================ */
:root {
    --cp-primary:        #000080;
    --cp-primary-light:  rgba(0, 0, 128, 0.08);
    --cp-sidebar-width:  285px;
    --cp-sidebar-sm:     64px;
    --cp-topbar-h:       60px;
    --cp-sidebar-bg:     #ffffff;
    --cp-sidebar-border: #e8eaed;
    --cp-body-bg:        #f4f6fb;
    --cp-text:           #1a1f36;
    --cp-text-muted:     #6b7280;
    --cp-active-text:    #000080;
    --cp-hover-bg:       #f3f4f8;
    --cp-radius:         10px;
    --cp-shadow:         0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --cp-shadow-md:      0 4px 16px rgba(0,0,0,.08);
    --cp-transition:     .2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--cp-body-bg); font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; color: var(--cp-text); }
a { text-decoration: none; color: inherit; }

/* Sidebar */
.cp-sidebar {
    position: fixed;
    top: 0; left: 0;
    width: var(--cp-sidebar-width);
    height: 100vh;
    background: var(--cp-sidebar-bg);
    border-right: 1px solid var(--cp-sidebar-border);
    display: flex;
    flex-direction: column;
    z-index: 1040;
    transition: width var(--cp-transition);
    overflow: hidden;
    box-shadow: 2px 0 8px rgba(0,0,0,.04);
}

/* Brand */
.cp-sidebar-brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 0 1.25rem;
    border-bottom: 1px solid var(--cp-sidebar-border);
    height: var(--cp-topbar-h);
    flex-shrink: 0;
    overflow: hidden;
    white-space: nowrap;
}

.cp-brand-icon {
    width: 36px; height: 36px;
    background: var(--cp-primary);
    color: #fff;
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1rem;
    flex-shrink: 0;
}

.cp-brand-text { overflow: hidden; }
.cp-brand-name { display: block; font-weight: 700; font-size: .875rem; color: var(--cp-text); line-height: 1.2; }
.cp-brand-sub  { display: block; font-size: .7rem; color: var(--cp-text-muted); }

/* Nav */
.cp-nav-wrapper {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: .75rem;
}
.cp-nav-wrapper::-webkit-scrollbar { width: 4px; }
.cp-nav-wrapper::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 4px; }

.cp-nav { list-style: none; display: flex; flex-direction: column; gap: 2px; padding: 0; margin: 0; }
.cp-nav-item { position: relative; }

.cp-nav-link {
    display: flex;
    align-items: center;
    gap: .625rem;
    padding: .55rem .75rem;
    border-radius: 8px;
    color: var(--cp-text-muted);
    font-size: .835rem;
    font-weight: 500;
    white-space: nowrap;
    transition: background var(--cp-transition), color var(--cp-transition);
    cursor: pointer;
    user-select: none;
    min-width: 0;
}
.cp-nav-link:hover { background: var(--cp-hover-bg); color: var(--cp-text); }
.cp-nav-link.cp-active { background: var(--cp-primary-light); color: var(--cp-primary); }
.cp-nav-link.cp-active .cp-nav-icon { color: var(--cp-primary); }

.cp-nav-icon { font-size: 1rem; flex-shrink: 0; width: 20px; text-align: center; }
.cp-nav-text {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: opacity var(--cp-transition);
}

/* Chevron */
.cp-chevron {
    font-size: .7rem;
    transition: transform var(--cp-transition);
    flex-shrink: 0;
    margin-left: auto;
}
.cp-submenu-open > .cp-nav-link .cp-chevron { transform: rotate(90deg); }

/* Badges */
.cp-badge {
    font-size: .65rem;
    font-weight: 600;
    padding: .15rem .4rem;
    border-radius: 20px;
    background: #e8eaed;
    color: var(--cp-text-muted);
    flex-shrink: 0;
}
.cp-badge-ai { background: rgba(0,0,128,.12); color: var(--cp-primary); }

/* Submenu */
.cp-submenu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
    padding-left: 2.25rem;
}
.cp-submenu-open > .cp-submenu { max-height: 300px; }
.cp-sub-link {
    display: block;
    padding: .42rem .75rem;
    border-radius: 6px;
    font-size: .8rem;
    color: var(--cp-text-muted);
    font-weight: 500;
    transition: background var(--cp-transition), color var(--cp-transition);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cp-sub-link:hover { background: var(--cp-hover-bg); color: var(--cp-text); }
.cp-sub-link.cp-active { color: var(--cp-primary); font-weight: 600; }

/* Collapse button */
.cp-collapse-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: .75rem;
    border: none;
    border-top: 1px solid var(--cp-sidebar-border);
    background: transparent;
    color: var(--cp-text-muted);
    font-size: 1rem;
    cursor: pointer;
    transition: background var(--cp-transition), color var(--cp-transition);
    flex-shrink: 0;
}
.cp-collapse-btn:hover { background: var(--cp-hover-bg); color: var(--cp-primary); }

/* Flyout */
.cp-flyout {
    display: none;
    position: fixed;
    left: var(--cp-sidebar-sm);
    top: 0;
    background: #fff;
    border: 1px solid var(--cp-sidebar-border);
    border-radius: 0 8px 8px 0;
    box-shadow: var(--cp-shadow-md);
    min-width: 180px;
    z-index: 1050;
    padding: .5rem 0;
}
.cp-flyout-title {
    padding: .4rem .9rem .25rem;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--cp-text-muted);
}
.cp-flyout-item {
    display: block;
    padding: .45rem .9rem;
    font-size: .82rem;
    color: var(--cp-text-muted);
    font-weight: 500;
    transition: background var(--cp-transition), color var(--cp-transition);
}
.cp-flyout-item:hover { background: var(--cp-hover-bg); color: var(--cp-primary); }

/* Main */
.cp-main {
    margin-left: var(--cp-sidebar-width);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: margin-left var(--cp-transition);
}

/* Topbar */
.cp-topbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    height: var(--cp-topbar-h);
    background: #fff;
    border-bottom: 1px solid var(--cp-sidebar-border);
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    gap: .75rem;
    box-shadow: var(--cp-shadow);
}
.cp-topbar-title { overflow: hidden; }
.cp-page-title { font-size: 1.1rem; font-weight: 700; color: var(--cp-text); line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cp-page-date   { font-size: .75rem; color: var(--cp-text-muted); }

/* Icon button */
.cp-icon-btn {
    position: relative;
    width: 36px; height: 36px;
    border: 1px solid var(--cp-sidebar-border);
    background: transparent;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--cp-text-muted);
    font-size: 1rem;
    cursor: pointer;
    transition: background var(--cp-transition), color var(--cp-transition);
}
.cp-icon-btn:hover { background: var(--cp-hover-bg); color: var(--cp-primary); }

.cp-notif-dot {
    position: absolute; top: 6px; right: 6px;
    width: 7px; height: 7px;
    background: #ef4444;
    border-radius: 50%;
    border: 1.5px solid #fff;
}
.cp-notif-dropdown { min-width: 280px; }

/* User button */
.cp-user-btn {
    border: 1px solid var(--cp-sidebar-border);
    background: transparent;
    border-radius: 40px;
    padding: .3rem .75rem .3rem .3rem;
    cursor: pointer;
    transition: background var(--cp-transition), border-color var(--cp-transition);
}
.cp-user-btn:hover { background: var(--cp-hover-bg); border-color: #c8cdd5; }

.cp-avatar     { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }
.cp-user-name  { font-size: .8rem; font-weight: 600; color: var(--cp-text); }
.cp-user-role  { font-size: .68rem; color: var(--cp-text-muted); }
.cp-chevron-sm { font-size: .65rem; color: var(--cp-text-muted); }

/* Mobile menu */
.cp-menu-toggle {
    border: none;
    background: transparent;
    font-size: 1.3rem;
    color: var(--cp-text);
    cursor: pointer;
    padding: .25rem .4rem;
    border-radius: 6px;
}
.cp-menu-toggle:hover { background: var(--cp-hover-bg); }

/* Content */
.cp-content { flex: 1; padding: 1.5rem; }

/* Dropdown */
.dropdown-menu { border: 1px solid var(--cp-sidebar-border); border-radius: 10px; box-shadow: var(--cp-shadow-md); }
.dropdown-item:active { background: var(--cp-primary-light); color: var(--cp-primary); }

/* Collapsed state */
body.cp-collapsed .cp-sidebar { width: var(--cp-sidebar-sm); overflow: visible; }
body.cp-collapsed .cp-main    { margin-left: var(--cp-sidebar-sm); }
body.cp-collapsed .cp-nav-text,
body.cp-collapsed .cp-brand-text,
body.cp-collapsed .cp-badge,
body.cp-collapsed .cp-chevron { opacity: 0; pointer-events: none; width: 0; overflow: hidden; }
body.cp-collapsed .cp-nav-link { justify-content: center; padding: .55rem; gap: 0; }
body.cp-collapsed .cp-brand-icon { margin: 0 auto; }
body.cp-collapsed .cp-sidebar-brand { justify-content: center; padding: 0 .5rem; }
body.cp-collapsed .cp-nav-wrapper { padding: .75rem .5rem; overflow: visible; }
body.cp-collapsed .cp-nav { overflow: visible; }
body.cp-collapsed .cp-nav-item { overflow: visible; }
body.cp-collapsed .cp-submenu { display: none !important; }
body.cp-collapsed .cp-nav-item:hover .cp-flyout { display: block; }

/* Mobile overlay */
.cp-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    z-index: 1039;
}
.cp-sidebar-overlay.show { display: block; }

@media (max-width: 991.98px) {
    .cp-sidebar {
        transform: translateX(-100%);
        transition: transform var(--cp-transition), width var(--cp-transition);
        width: var(--cp-sidebar-width) !important;
        overflow: hidden !important;
    }
    .cp-sidebar.cp-mobile-open { transform: translateX(0); }
    .cp-main { margin-left: 0 !important; }
    body.cp-collapsed .cp-sidebar { overflow: hidden !important; }
}

/* ============================================================
   Company Panel — Shared Component Styles
   (extracted from bootstrap-panel mockup, cp-* uyumlu)
   ============================================================ */

/* Panel-level Bootstrap overrides */
.cp-content .btn-primary { background-color: var(--cp-primary); border-color: var(--cp-primary); }
.cp-content .btn-primary:hover { background-color: #000099; border-color: #000099; }
.cp-content .btn-outline-primary { color: var(--cp-primary); border-color: var(--cp-primary); }
.cp-content .btn-outline-primary:hover { background-color: var(--cp-primary); color: #fff; }
.cp-content a:not(.btn) { color: var(--cp-primary); }
.cp-content a:not(.btn):hover { color: #000099; }

/* AI accent */
.badge-ai { background-color: #3D0080 !important; color: #fff; }
.bg-ai-light { background-color: #ede8f5; color: #3D0080; }

/* KPI cards */
.kpi-card { border: 1px solid rgba(0,0,0,.08); border-radius: 12px; }
.kpi-icon-box { width: 48px; height: 48px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* Progress ring */
.progress-ring { transform: rotate(-90deg); }
.progress-ring__circle { transition: stroke-dashoffset .5s ease; }

/* Status badges */
.badge-tamamlandi { background-color: #d1fae5 !important; color: #065f46 !important; }
.badge-devam      { background-color: #dbeafe !important; color: #1e40af !important; }
.badge-beklemede  { background-color: #fef3c7 !important; color: #92400e !important; }
.badge-aktif      { background-color: #d1fae5 !important; color: #065f46 !important; }
.badge-pasif      { background-color: #f1f5f9 !important; color: #475569 !important; }
.badge-admin      { background-color: #ede9fe !important; color: #5b21b6 !important; }
.badge-hr         { background-color: #dbeafe !important; color: #1e40af !important; }
.badge-viewer     { background-color: #f1f5f9 !important; color: #475569 !important; }
.badge-yes        { background-color: #d1fae5 !important; color: #065f46 !important; }
.badge-maybe      { background-color: #fef3c7 !important; color: #92400e !important; }
.badge-no         { background-color: #fee2e2 !important; color: #991b1b !important; }
.badge-shortlist  { background-color: #d1fae5 !important; color: #065f46 !important; }
.badge-review     { background-color: #fef3c7 !important; color: #92400e !important; }
.badge-reject     { background-color: #fee2e2 !important; color: #991b1b !important; }
.badge-gonderildi   { background-color: #dbeafe !important; color: #1e40af !important; }
.badge-gonderilmedi { background-color: #f1f5f9 !important; color: #475569 !important; }
.badge-kabul      { background-color: #d1fae5 !important; color: #065f46 !important; }
.badge-ret        { background-color: #fee2e2 !important; color: #991b1b !important; }
.badge-suresi-doldu { background-color: #fee2e2 !important; color: #991b1b !important; }
.badge-taslak     { background-color: #f1f5f9 !important; color: #475569 !important; }
.badge-baslangic  { background-color: #fef3c7 !important; color: #92400e !important; }
.badge-orta       { background-color: #dbeafe !important; color: #1e40af !important; }
.badge-ileri      { background-color: #fee2e2 !important; color: #991b1b !important; }

/* Avatar initials */
.avatar-initials {
    width: 36px; height: 36px;
    border-radius: 50%;
    background-color: rgba(0,0,128,.1);
    color: var(--cp-primary);
    font-size: 12px; font-weight: 600;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

/* Card panel overrides */
.cp-content .card { border: 1px solid rgba(0,0,0,.08); border-radius: 12px; }
.cp-content .card-header { background: #fff; border-bottom: 1px solid rgba(0,0,0,.08); border-radius: 12px 12px 0 0 !important; padding: 1rem 1.25rem; }

/* Table panel styles */
.cp-content .table th { font-size: 12px; text-transform: capitalize; color: #000; font-weight: 600; letter-spacing: .03em; }
.cp-content .table td { vertical-align: middle; font-size: 14px; }
.cp-content .table thead th { border-bottom: 1px solid #e5e7eb; }

/* KPI value */
.cp-kpi-value { color: var(--cp-primary); }

/* Stepper */
.stepper { display: flex; align-items: flex-start; position: relative; }
.step-item { flex: 1; text-align: center; position: relative; }
.step-circle {
    width: 36px; height: 36px; border-radius: 50%;
    border: 2px solid #dee2e6; background: #fff;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 8px; font-weight: 600; color: #9ca3af; font-size: 14px;
}
.step-item.active .step-circle { background: var(--cp-primary); border-color: var(--cp-primary); color: #fff; }
.step-item.done  .step-circle  { background: #d1fae5; border-color: #10b981; color: #065f46; }
.step-label { font-size: 12px; color: #6b7280; }
.step-item.active .step-label  { color: var(--cp-primary); font-weight: 600; }
.step-item::before {
    content: ''; position: absolute; top: 18px; left: calc(-50% + 18px);
    width: calc(100% - 36px); height: 2px; background: #dee2e6; z-index: 0;
}
.step-item:first-child::before { display: none; }
.step-item.active::before, .step-item.done::before { background: var(--cp-primary); }
.step-content.d-none { display: none !important; }

/* Funnel chart */
.funnel-step {
    background: rgba(0,0,128,.06); border-radius: 8px; text-align: center;
    padding: 12px 16px; margin: 0 auto 8px; color: var(--cp-primary); font-weight: 600;
    display: flex; align-items: center; justify-content: space-between;
}
.funnel-step .funnel-label { font-size: 13px; }
.funnel-step .funnel-value { font-size: 18px; font-weight: 700; }

/* Password strength */
.strength-bar { height: 4px; border-radius: 2px; background: #e5e7eb; overflow: hidden; margin-top: 6px; }
.strength-bar .fill { height: 100%; border-radius: 2px; transition: width .3s; width: 0; }

/* Integration card */
.integration-card {
    border: 1px solid #e5e7eb; border-radius: 10px; padding: 16px;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
}

/* Role card */
.role-card { border: 2px solid #e5e7eb; border-radius: 10px; padding: 16px; cursor: pointer; transition: all .2s; }
.role-card:hover   { border-color: rgba(0,0,128,.3); }
.role-card.selected { border-color: var(--cp-primary); background: rgba(0,0,128,.04); }

/* Answer dot (test detail) */
.answer-dot { width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; background: #f1f5f9; color: #94a3b8; }
.answer-dot.correct { background: #d1fae5; color: #065f46; }
.answer-dot.wrong   { background: #fee2e2; color: #991b1b; }

/* Test Ekleme — soru cevap işaretleme (Admin Question.cshtml ile aynı görsel dil) */
.q-option { position: relative; }
.q-option .q-option-input { padding-right: 40px; }
.q-option-check {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #c0c7d4;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    cursor: pointer;
    z-index: 3;
    border-radius: 50%;
    transition: transform .06s ease, background-color .12s ease, color .12s ease;
}
.q-option-check:hover { background-color: rgba(0,0,0,.03); }
.q-option-check:active { transform: translateY(-50%) scale(0.95); }
.q-option.is-correct .q-option-check { color: #22c55e; }
.q-option.is-correct .q-option-input { border-color: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.12); }

/* Nav pills (CV filter) */
.cp-content .nav-pills .nav-link { color: #6b7280; border-radius: 6px; font-size: 13px; padding: 6px 14px; }
.cp-content .nav-pills .nav-link.active { background-color: var(--cp-primary); color: #fff; }

/* Date filter buttons (dashboard) */
.date-filter-btn.btn-primary { background-color: var(--cp-primary); border-color: var(--cp-primary); }

/* CV filter tabs */
.cv-filter-tab { background: #f1f5f9; color: #475569; border: none; border-radius: 6px; padding: 6px 14px; font-size: 13px; transition: background .15s, color .15s; }
.cv-filter-tab:hover { background: #e2e8f0; color: #334155; }
.cv-filter-tab.active { background: var(--cp-primary) !important; color: #fff !important; }

/* ============================================================
   Marathon list badges + Hiring Challenge wizard
   ============================================================ */

/* Candidate count pill */
.pill-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0.65rem;
    background: var(--cp-primary-light);
    color: var(--cp-primary);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
}

/* Soft badges (test durumu, AI skor, shortlist placeholders) */
.badge-soft {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid transparent;
}
.badge-soft-info    { background: #dbeafe; color: #1d4ed8; border-color: #bfdbfe; }
.badge-soft-muted   { background: #f1f5f9; color: #64748b; border-color: #e5e7eb; }
.badge-soft-success { background: #d1fae5; color: #065f46; border-color: #bbf7d0; }
.badge-soft-warning { background: #fef3c7; color: #b45309; border-color: #fde68a; }
.badge-soft-danger  { background: #fee2e2; color: #b91c1c; border-color: #fecaca; }

/* Başvuru Ayarları checkbox cards (hiring challenge wizard) */
.app-checkbox {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.65rem 0.9rem;
    cursor: pointer;
    margin: 0;
    transition: background-color 0.15s ease;
}
.app-checkbox:hover { background-color: #f9fafb; }
.app-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: var(--cp-primary);
    flex-shrink: 0;
}
.app-checkbox span { font-size: 13px; color: #1f2937; }

/* Candidate Journey Preview pills */
.journey-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #e5e7eb;
    background: #fff;
    border-radius: 999px;
    padding: 0.3rem 0.7rem;
}
.journey-pill .journey-index {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--cp-primary-light);
    color: var(--cp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
}
.journey-pill span:last-child { font-size: 12px; color: #1f2937; }

/* Section title inside wizard cards */
.card-title-sm { font-size: 14px; font-weight: 600; margin: 0; }

/* ============================================================
   CV Skorlama
   ============================================================ */

.p-16 { padding: 4rem; }

.cv-stat-card { cursor: pointer; transition: box-shadow .15s, outline-color .15s; }
.cv-stat-card:hover { box-shadow: 0 .25rem .75rem rgba(0,0,0,.08); }
.cv-stat-active { outline: 2px solid var(--cp-primary); outline-offset: -1px; }

/* Score pills (4 tiers) */
.cv-score-pill { display: inline-flex; align-items: center; padding: 2px 10px; border-radius: 9999px; font-size: 12px; font-weight: 600; border: 1px solid; }
.cv-score-90   { background: #dcfce7; color: #166534; border-color: #bbf7d0; }
.cv-score-75   { background: #ecfdf5; color: #047857; border-color: #a7f3d0; }
.cv-score-50   { background: #fffbeb; color: #b45309; border-color: #fde68a; }
.cv-score-low  { background: #fef2f2; color: #b91c1c; border-color: #fecaca; }

/* Threshold badges */
.cv-thr-badge  { display: inline-flex; align-items: center; padding: 2px 10px; border-radius: 9999px; font-size: 12px; font-weight: 600; border: 1px solid; }
.cv-thr-pass   { background: #dcfce7; color: #15803d; border-color: #bbf7d0; }
.cv-thr-below  { background: #f3f4f6; color: #4b5563; border-color: #e5e7eb; }

.cv-row-dim { opacity: .7; }

/* Bulk action bar */
.cv-bulk-bar { background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 12px; }

/* Bulk action tooltip — Shortlist'e Ekle butonuyla aynı renk */
.tooltip.cv-tooltip-primary .tooltip-inner { background-color: #5757AB; color: #fff; }
.tooltip.cv-tooltip-primary[data-popper-placement^="top"] .tooltip-arrow::before { border-top-color: #5757AB; }
.tooltip.cv-tooltip-primary[data-popper-placement^="bottom"] .tooltip-arrow::before { border-bottom-color: #5757AB; }
.tooltip.cv-tooltip-primary[data-popper-placement^="left"] .tooltip-arrow::before { border-left-color: #5757AB; }
.tooltip.cv-tooltip-primary[data-popper-placement^="right"] .tooltip-arrow::before { border-right-color: #5757AB; }

/* Ghost icon buttons (table row actions) */
.btn-ghost { background: transparent; border: none; color: #475569; }
.btn-ghost:hover { background: #f1f5f9; color: #1f2937; }
.cv-detail-btn:hover { background: var(--cp-primary-light); color: var(--cp-primary); }

/* CV actions column — 4 ikon tek satırda kalır (sarma yok) */
.cv-action-group { display: flex; flex-wrap: nowrap; align-items: center; justify-content: flex-end; gap: 2px; }
#cvScoringTable td.cv-actions-cell { white-space: nowrap; }

/* Mülakat daveti durum ikonu (salt gösterim, tıklanabilir değil) */
.cv-invite-status { display: inline-flex; align-items: center; justify-content: center; padding: .25rem .5rem; font-size: .875rem; line-height: 1.5; cursor: default; }
.cv-invite-status i { display: inline-block; transform: rotate(45deg); }
.cv-invite-sent   { color: #8b5cf6; }
.cv-invite-unsent { color: #adb5bd; opacity: .65; }

/* Detail offcanvas category progress bars (shared with phone-interview reports) */
.cv-cat-bar { height: 8px; background: #f3f4f6; border-radius: 9999px; overflow: hidden; }
.cv-cat-fill { height: 100%; border-radius: 9999px; transition: width .4s ease; }

/* CV detay paneli - tabbed layout (Overview / AI Analysis / Experience / Skills / Notes) */

/* Üstteki ince lacivert vurgu çizgisi + kapatma (X) düğmesinin avatar satırıyla
   aynı hizaya taşınması (paylaşılan _SidePanel.cshtml değiştirilmeden, sadece bu panele özel) */
#cvDetailOffcanvas { --bs-offcanvas-padding-x: 1.25rem; }

#cvDetailOffcanvas::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--cp-primary); z-index: 5;
}

#cvDetailOffcanvas .cv-detail-offcanvas-header {
    position: absolute; top: 22px; right: 1.25rem;
    z-index: 6; padding: 0; border: 0; background: transparent;
    pointer-events: none;
}
#cvDetailOffcanvas .cv-detail-offcanvas-header .btn-close { pointer-events: auto; }

#cvDetailOffcanvas .offcanvas-body { padding-top: 1rem; }

.min-w-0 { min-width: 0; }

/* Aday başlık satırı: avatar / isim / önerilir rozeti */
.cv-detail-header { padding-right: 44px; }

.cv-detail-avatar {
    width: 44px; height: 44px; flex: 0 0 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #000090 0%, #0000b8 100%);
    color: #fff; font-size: 16px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}

.cv-detail-name { font-size: 15px; font-weight: 700; color: #0a0a0a; line-height: 1.3; }

.cv-rec-badge {
    display: inline-flex; align-items: center; flex-shrink: 0;
    padding: 6px 12px; border-radius: 999px;
    font-size: 12px; font-weight: 700; line-height: 1.2; white-space: nowrap;
}
.cv-rec-yes { background: #dcfce7; color: #016630; }
.cv-rec-no  { background: #ffe2e2; color: #c10007; }

/* Final AI skoru - halka (conic-gradient, harici kütüphane yok) */
.cv-score-ring {
    --cv-ring-value: 0;
    --cv-ring-color: #ef4444;
    position: relative; flex: 0 0 auto;
    width: 50px; height: 50px; border-radius: 50%;
    background: conic-gradient(var(--cv-ring-color) calc(var(--cv-ring-value) * 3.6deg), #ececf0 0);
    transition: background .5s ease;
}
.cv-score-ring::after {
    content: ''; position: absolute; inset: 4px;
    border-radius: 50%; background: #fff;
}
.cv-score-ring-value {
    position: absolute; inset: 0; z-index: 1;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700; color: var(--cv-ring-color);
}

/* Skor katmanları - cv/index.js scoreBarColor()/getScoreBadgeHtml() ile aynı eşikler/renkler */
.cv-ring-success { --cv-ring-color: #22c55e; }
.cv-ring-warning { --cv-ring-color: #f59e0b; }
.cv-ring-danger  { --cv-ring-color: #ef4444; }

.cv-final-label { font-size: 12px; color: #717182; line-height: 1.4; }
.cv-final-value { font-size: 17px; font-weight: 700; color: #0a0a0a; line-height: 1.4; }
.cv-detail-meta { font-size: 12px; color: #717182; line-height: 1.5; }

.cv-detail-divider {
    height: 1px; background: #e5e5e5;
    margin: 1rem calc(-1 * var(--bs-offcanvas-padding-x, 1rem)) 0;
}

/* Sekmeler - düz Bootstrap nav-tabs yerine alt çizgili özel stil */
.cv-detail-tabs {
    flex-wrap: nowrap; overflow-x: auto;
    margin: 0 calc(-1 * var(--bs-offcanvas-padding-x, 1rem));
    border-bottom: 1px solid #e5e5e5;
    scrollbar-width: none;
}
.cv-detail-tabs::-webkit-scrollbar { display: none; }

.cv-detail-tabs .nav-link {
    padding: 12px 16px;
    font-size: 13px; font-weight: 500; color: #717182;
    background: none; border: 0; border-bottom: 2px solid transparent;
    border-radius: 0; margin-bottom: -1px; white-space: nowrap;
}
.cv-detail-tabs .nav-link:hover { color: var(--cp-primary); }
.cv-detail-tabs .nav-link.active { color: #0a0a0a; font-weight: 700; border-bottom-color: var(--cp-primary); }

.cv-section-label { font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; color: #717182; margin-bottom: .5rem; }
.cv-summary-text { font-size: 13.5px; line-height: 1.75; color: #1f2937; }

/* Zorunlu / Tercih edilen anahtar kelime kutuları - renkli başlık çubuğu */
.cv-kw-box { border: 1px solid; border-radius: 10px; overflow: hidden; margin-bottom: 1rem; }
.cv-kw-head {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    min-height: 35px; padding: 0 14px;
    font-size: 13px; font-weight: 700;
}
.cv-kw-head-value { font-size: 13px; font-weight: 600; }
.cv-kw-body { background: #fff; padding: 14px; }
.cv-kw-empty { font-size: 12.5px; color: #717182; margin: 0; }
.cv-kw-sublabel { font-size: 11.5px; color: #717182; margin-bottom: .5rem; }

.cv-kw-mandatory { border-color: var(--cp-primary); }
.cv-kw-mandatory .cv-kw-head { background: var(--cp-primary); color: #fff; }

.cv-kw-preferred { border-color: #ffd54a; }
.cv-kw-preferred .cv-kw-head { background: #ffd54a; color: var(--cp-primary); }

/* Genel amaçlı sağ panel (.sp-offcanvas) - daha belirgin/yavaş açılış animasyonu.
   !important + OS "reduce motion" kuralını da geçersiz kılan özgüllük: kullanıcı
   bu panelde animasyonun her koşulda görünmesini istedi. */
.offcanvas.sp-offcanvas {
    transition: transform .55s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.offcanvas.sp-offcanvas .offcanvas-body {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .4s ease .1s, transform .4s ease .1s;
}
.offcanvas.sp-offcanvas.show .offcanvas-body,
.offcanvas.sp-offcanvas.showing .offcanvas-body {
    opacity: 1;
    transform: translateY(0);
}

/* Genel amaçlı sağ panel (.sp-offcanvas) - mobil responsive ayarları */
@media (max-width: 575.98px) {
    .sp-offcanvas { width: 100% !important; }
    .sp-offcanvas .offcanvas-header,
    .sp-offcanvas .offcanvas-body { padding: 1rem; }
    #cvDetailOffcanvas { --bs-offcanvas-padding-x: 1rem; }
    .sp-offcanvas .pi-score-ring { width: 96px; }
    .sp-offcanvas .pi-score-ring-center #piScoreValue { font-size: 1.25rem; }
    .sp-offcanvas .pi-score-ring-center .pi-score-label { font-size: 8.5px; }
}

/* ============================================================
   AI Telefon Mülakat
   ============================================================ */

/* Sekme çubuğu (Genel Bakış / Aday Ekle / Aktif Görüşmeler / Raporlar) */
.pi-tab-link {
    display: inline-block;
    padding: 0.6rem 0.1rem;
    margin-right: 1.75rem;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}
.pi-tab-link:hover { color: var(--cp-primary); }
.pi-tab-active { color: var(--cp-primary); border-bottom-color: var(--cp-primary); }

/* Mülakat Ayarları - zamanlama seçenek kartları */
.pi-schedule-option {
    display: block;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background-color .15s ease, border-color .15s ease;
}
.pi-schedule-option:hover { background-color: #f9fafb; }
.pi-schedule-option.pi-schedule-selected { border-color: var(--cp-primary); background-color: var(--cp-primary-light); }
.pi-schedule-option input[type="radio"] { accent-color: var(--cp-primary); margin-right: 0.5rem; }

/* ===== Aday Ekle (PhoneInterview Create) — sayfaya özel tasarım ===== */

/* Başlık/kart başlığı boyutları — theme.css'te h6=12px sabitli, a.png'ye göre büyütülüyor */
#pi-create-section > h6.fw-semibold {
    font-size: 20px;
    font-weight: 700;
}
#pi-create-section .card-body > h6.fw-semibold {
    font-size: 15px;
    font-weight: 600;
}

#aday-bilgileri-form {
    --pi-accent: #7C3AED;
    --pi-accent-hover: #6D28D9;
    --pi-accent-light: rgba(124, 58, 237, .07);
    --pi-field-bg: #f1f5f9;
}

/* Aktif Görüşmeler filtre dropdown'ları — Aday Ekle formundaki gri dolgu, kenarlıksız tasarımla aynı */
#piActiveFilters {
    --pi-accent: #7C3AED;
    --pi-accent-light: rgba(124, 58, 237, .07);
    --pi-field-bg: #e2e8f0;
}
#piActiveFilters .form-select {
    background-color: var(--pi-field-bg);
    border: 1px solid transparent;
    border-radius: 8px;
}
#piActiveFilters .form-select:focus {
    background-color: #fff;
    border-color: var(--pi-accent);
    box-shadow: 0 0 0 .2rem var(--pi-accent-light);
}
#piActiveFilters .select2-container--bootstrap-5 .select2-selection {
    background-color: var(--pi-field-bg);
    border-color: transparent;
    border-radius: 8px;
}

/* Segmented pill tab toggle */
#piCandidateTabs.nav-tabs {
    border-bottom: 0;
    background: #f1f5f9;
    border-radius: 10px;
    padding: 4px;
    display: inline-flex;
    gap: 4px;
    margin-bottom: 1rem;
}
#piCandidateTabs .nav-item { margin: 0; }
#piCandidateTabs .nav-link {
    border: 0;
    border-radius: 8px;
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 16px;
    background: transparent;
}
#piCandidateTabs .nav-link:hover { border-color: transparent; color: #334155; }
#piCandidateTabs .nav-link.active {
    background: #fff;
    color: #0f172a;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .08);
}

/* Gri dolgu, kenarlıksız input/select */
#aday-bilgileri-form .form-control,
#aday-bilgileri-form .form-select {
    background-color: var(--pi-field-bg);
    border: 1px solid transparent;
    border-radius: 8px;
}
#aday-bilgileri-form .form-control:focus,
#aday-bilgileri-form .form-select:focus {
    background-color: #fff;
    border-color: var(--pi-accent);
    box-shadow: 0 0 0 .2rem var(--pi-accent-light);
}
#aday-bilgileri-form .select2-container--bootstrap-5 .select2-selection {
    background-color: var(--pi-field-bg);
    border-color: transparent;
    border-radius: 8px;
}

/* Zamanlama nokta göstergesi (native radio gizli) */
#aday-bilgileri-form .pi-schedule-option { position: relative; padding-left: 2.25rem; }
#aday-bilgileri-form .pi-schedule-option input[type="radio"] { display: none; }
#aday-bilgileri-form .pi-schedule-dot {
    position: absolute;
    left: 1rem;
    top: 1.15rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    background: transparent;
}
#aday-bilgileri-form .pi-schedule-selected .pi-schedule-dot {
    background: var(--pi-accent);
    border-color: var(--pi-accent);
}
#aday-bilgileri-form .pi-schedule-selected {
    border-color: rgba(124, 58, 237, .35);
    background-color: var(--pi-accent-light);
}

/* Vurgu butonları (TR + Mülakatı Başlat) */
#aday-bilgileri-form .pi-btn-accent { background: var(--pi-accent); color: #fff; border: 0; }
#aday-bilgileri-form .pi-btn-accent:hover,
#aday-bilgileri-form .pi-btn-accent:focus { background: var(--pi-accent-hover); color: #fff; }

/* EN — mat, kenarlıksız */
#aday-bilgileri-form .pi-lang-en {
    background: var(--pi-field-bg);
    color: #94a3b8;
    border: 0;
    cursor: not-allowed;
}
#aday-bilgileri-form .pi-lang-en:disabled { opacity: 1; }

/* Toplu Yükleme - CSV dropzone ve önizleme tablosu */
#aday-bilgileri-form .pi-dropzone {
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 2rem 1rem;
    text-align: center;
    color: #64748b;
    background: var(--pi-field-bg);
    cursor: pointer;
    transition: border-color .15s ease, background-color .15s ease;
}
#aday-bilgileri-form .pi-dropzone:hover,
#aday-bilgileri-form .pi-dropzone.pi-dropzone-active {
    border-color: var(--pi-accent);
    background: var(--pi-accent-light);
}
#aday-bilgileri-form .pi-dropzone-icon { font-size: 24px; color: #94a3b8; }
#aday-bilgileri-form .pi-template-link { color: var(--pi-accent); text-decoration: none; font-size: 13px; }
#aday-bilgileri-form .pi-template-link:hover { color: var(--pi-accent-hover); text-decoration: underline; }
#aday-bilgileri-form .pi-csv-row-invalid { background-color: #fef2f2; }
#aday-bilgileri-form .pi-csv-status-invalid { color: #dc2626; font-size: 13px; }

/* Öneri rozetleri (Genel Bakış / Raporlar / Rapor Detayı) */
.pi-rec-devam               { background: #d1fae5; color: #065f46; border-color: #bbf7d0; }
.pi-rec-degerlendirilebilir { background: #fef3c7; color: #b45309; border-color: #fde68a; }
.pi-rec-uygun-degil         { background: #fee2e2; color: #b91c1c; border-color: #fecaca; }

/* "Görüşülüyor" durumu için mor rozet + nabız animasyonu (Aktif Görüşmeler) */
.badge-soft-purple { background: #EDE8F5; color: #3D0080; border-color: #d8cdf0; }
.badge-soft-orange { background: #ffedd5; color: #c2410c; border-color: #fed7aa; }
.pi-pulse { animation: pi-pulse 1.5s ease-in-out infinite; }
@keyframes pi-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .55; } }

/* Görüşme sürerken konuşma/ekolayzer animasyonu (Aktif Görüşmeler kartı) */
.pi-live-box {
    background: rgba(124,58,237,.08);
    border-radius: .75rem;
}
.pi-elapsed { color: #7C3AED; font-size: 1.05rem; letter-spacing: .5px; }
.pi-wave { display: flex; align-items: flex-end; gap: 2px; height: 24px; }
.pi-wave-bar {
    display: block;
    width: 3px;
    height: 17px;
    background: #7C3AED;
    border-radius: 999px;
    transform-origin: bottom center;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}
.pi-wave-bar:nth-child(1) { animation: pi-wave-a 1.7s infinite; animation-delay: 0ms; }
.pi-wave-bar:nth-child(2) { animation: pi-wave-b 1.4s infinite; animation-delay: 90ms; }
.pi-wave-bar:nth-child(3) { animation: pi-wave-c 1.85s infinite; animation-delay: 180ms; }
.pi-wave-bar:nth-child(4) { animation: pi-wave-a 1.5s infinite; animation-delay: 270ms; }
.pi-wave-bar:nth-child(5) { animation: pi-wave-b 2s infinite; animation-delay: 60ms; }
.pi-wave-bar:nth-child(6) { animation: pi-wave-c 1.45s infinite; animation-delay: 330ms; }
.pi-wave-bar:nth-child(7) { animation: pi-wave-a 1.75s infinite; animation-delay: 210ms; }
@keyframes pi-wave-a {
    0%, 100% { transform: scaleY(.25); opacity: .55; }
    50%      { transform: scaleY(1.35); opacity: 1; }
}
@keyframes pi-wave-b {
    0%, 100% { transform: scaleY(.45); opacity: .6; }
    50%      { transform: scaleY(1);   opacity: 1; }
}
@keyframes pi-wave-c {
    0%, 100% { transform: scaleY(.2); opacity: .5; }
    50%      { transform: scaleY(1.5); opacity: 1; }
}

/* Rapor Detayı paneli - skor halkası (SVG dairesel ilerleme çemberi) */
.pi-score-ring {
    position: relative;
    width: 128px; max-width: 100%;
    aspect-ratio: 1 / 1;   /* dar sütunda da kare kalsın */
}
.pi-score-ring > svg {
    width: 100%; height: 100%;
    transform: rotate(-90deg);   /* ilerleme saat 12 yönünden başlasın */
    overflow: visible;
}
.pi-score-ring .pi-score-ring-progress {
    stroke-linecap: butt;
    stroke-dasharray: 333;       /* 2 * PI * 53 — JS gerçek değeri yeniden hesaplar */
    stroke-dashoffset: 333;
    transition: stroke-dashoffset .6s ease;
}
.pi-score-ring-center {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    pointer-events: none;
}
.pi-score-ring-center #piScoreValue { font-size: 1.75rem; line-height: 1.1; color: #1f2937; }
.pi-score-ring-center .pi-score-label { font-size: 9.5px; text-transform: uppercase; letter-spacing: .5px; margin-top: 3px; }

.pi-border-start-4 { border-left-width: 4px !important; border-left-style: solid !important; }

/* Rapor Detayı paneli - kart çerçeveleri
   (Bootstrap'in .border sınıfı !important shorthand kullandığı için renk override
    edilemiyor; bu yüzden panel kartları kendi sınıfını kullanıyor) */
.pi-detail-card { border: 1px solid #e5e7eb; background: #fff; }
.pi-detail-card-green  { border-left: 4px solid #22c55e; }
.pi-detail-card-amber  { border-left: 4px solid #f59e0b; }
.pi-detail-card-green-outline { border-color: #bbf7d0; }
.pi-detail-card-amber-outline { border-color: #fde68a; }

