/* ===============================
   Arsha-style base
   =============================== */

   html, body {
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;

}

body, .flip-card, .flip-card-front, .flip-card-back {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-smooth: always;
}


:root {
    --hero-bg: #37517e;
    --primary: #47b2e4;
    --primary-hover: #31a7d3;
    --white: #fff;
    --muted: rgba(255, 255, 255, .85);
    --muted-2: rgba(255, 255, 255, .6);


    --nav-h-sm: 70px;
    --nav-h-md: 84px;
    --nav-h-lg: 110px;
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
    color: #333;
    background: #fff;
}

section {
    scroll-margin-top: 100px;
}

/* Logo (responsive) */
.brand-logo {
    width: auto;
    object-fit: contain;
    display: block;
    height: 70px;
}


/* Desktop'ta hover ile dropdown aç */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* Koyu temalı dropdown */
.dropdown-menu-dark {
    --bs-dropdown-bg: rgba(17, 28, 45, .96);
    --bs-dropdown-link-color: #e8f4ff;
    --bs-dropdown-link-hover-bg: rgba(255, 255, 255, .08);
}


#hero {
    background: var(--hero-bg);
    color: var(--white);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    z-index: 2;
}


.hero-header {
    .hero-header {
        position: fixed; /* absolute yerine fixed */
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1050; /* diğer içeriklerin üstünde */
        background-color: transparent; /* scroll sonrası blur devreye girecek */
    }
}


.hero-header .navbar {
    background: #37517e !important;
    transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
    padding: .75rem 0;
}

.navbar-brand {
    color: var(--white) !important;
    font-weight: 700;
    letter-spacing: .5px;
}

.navbar .nav-link {
    position: relative;
    color: var(--muted) !important;
    font-weight: 500;
    padding: .5rem .75rem;
    transition: color .3s ease, transform .2s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: var(--white) !important;
    transform: scale(1.15);
}


/* Admin'den gelen buton */
.navbar .btn.btn-primary {
    border: 0;
    border-radius: 999px;
    padding: .55rem 1.15rem;
    font-weight: 600;
    background: linear-gradient(180deg, #62c7ef 0%, var(--primary) 100%);
    box-shadow: 0 6px 18px rgba(71, 178, 228, .35);
}

.navbar .btn.btn-primary:hover {
    background: linear-gradient(180deg, #6dd2f8 0%, var(--primary-hover) 100%);
}

/* Toggler */
.navbar-toggler {
    border-color: rgba(255, 255, 255, .35);
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#mainNavbar {
    transition: background-color 0.3s ease;
    z-index: 1050
}

#mainNavbar.scrolled {
    background-color: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(6px);
}


/* Mobilde açılan menü paneli */
@media (max-width: 1200px) {
    .navbar-collapse {
        background: rgba(0, 0, 0, .35);
        backdrop-filter: blur(6px);
        border-radius: 12px;
        padding: .5rem;
        margin-top: .5rem;
    }
}

/* ===============================
   HERO içerik
   =============================== */
/* Üst boşluk: navbar yüksekliğine göre */
#hero .hero-body {
    padding-top: var(--nav-h-sm);
    padding-bottom: 48px;
}

@media (min-width: 576px) {
    #hero .hero-body {
        padding-top: var(--nav-h-md);
    }
}

@media (min-width: 992px) {
    #hero .hero-body {
        padding-top: var(--nav-h-lg);
    }
}

#hero h1 {
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: .75rem;
    font-size: clamp(2rem, 4vw + 1rem, 3.25rem);
    color: var(--white);
}

#hero p {
    color: var(--muted);
    font-size: clamp(1rem, .4vw + .9rem, 1.25rem);
    margin-bottom: 1.25rem;
}

/* CTA butonları */
#hero .btn.btn-primary {
    border: 0;
    border-radius: 999px;
    padding: .85rem 1.35rem;
    font-weight: 700;
    background: linear-gradient(180deg, #62c7ef 0%, var(--primary) 100%);
    box-shadow: 0 12px 24px rgba(71, 178, 228, .35);
}

#hero .btn.btn-primary:hover {
    background: linear-gradient(180deg, #6dd2f8 0%, var(--primary-hover) 100%);
    transform: translateY(-1px);
}

#hero .btn.btn-outline-light {
    border: 2px solid var(--muted-2);
    color: var(--white);
    border-radius: 999px;
    padding: .8rem 1.35rem;
    font-weight: 600;
    background: transparent;
}

#hero .btn.btn-outline-light:hover {
    background: var(--white);
    color: var(--hero-bg);
}

/* Donut grafiği */
#hero .chart-wrap {
    width: 100%;
    max-width: 480px;
    margin-inline: auto;
}

#hero #heroChart {
    width: 100%;
    height: auto;
}

/* Görsel (kullanırsan) */
#hero img.img-fluid {
    max-width: 560px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .25));
}

/* Küçük ekran düzeni */
@media (max-width: 991.98px) {
    #hero .btn {
        width: auto;
    }

    #hero img.img-fluid {
        max-width: 440px;
    }

    #hero #heroChart {
        max-width: 360px;
    }

    /* Donut ortalama */
    #hero .chart-wrap {
        max-width: 360px;
        margin: 2rem auto 0;
        text-align: center;
    }

    #hero #heroChart {
        display: inline-block;
        max-width: 100%;
    }

    .navbar .nav-link:hover,
    .navbar .nav-link:focus {

        transform: none;
    }
}

@media (max-width: 575.98px) {
    #hero img.img-fluid {
        max-width: 340px;
    }
}

@media (min-width: 992px)   and (max-width: 1070px) {
    .ms-lg-3 {
        margin-left: 0rem !important;
    }
}

/*client icin css ler*/

#clients {
    --logo-h: 54px;
    --gap: 64px;
    --speed: 100s;
}

.clients-bg {

    background-color: #d7dbe3;


    box-shadow: inset 0 1px 0 rgba(0, 0, 0, .04),
    inset 0 -1px 0 rgba(0, 0, 0, .04);
}

.logos {
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logos-track {
    display: flex;
    align-items: center;
    gap: var(--gap);
    width: max-content;
    animation: logos-scroll var(--speed) linear infinite;
    will-change: transform;
}

.logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.logo-item img {
    height: var(--logo-h);
    width: auto;
    object-fit: contain;
    display: block;
    filter: none;
    opacity: 1;
    transition: transform .2s ease;
}

.logo-item:hover img {
    transform: scale(1.08);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .15));
}

@keyframes logos-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


@media (max-width: 991.98px) {
    #clients {
        --logo-h: 42px;
        --gap: 44px;
    }
}

@media (max-width: 575.98px) {
    #clients {
        --logo-h: 32px;
        --gap: 28px;
    }
}


@media (prefers-reduced-motion: reduce) {
    .logos-track {
        animation: none;
    }
}


/*client css son*/

/*about kısmı css*/
#about .section-title h2 {
    font-weight: 700;
    color: #2c3e50;
}

.line {
    width: 60px;
    height: 3px;
    background: #47b2e4;
    margin: 10px auto;
}

/*about kısmı son css*/
#aboutus {
    padding: 80px 0;
    background: var(--hero-bg);
    color: #fff;
}

#about .icon-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

#about .icon-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

#about .icon-box h5,
#about .icon-box h4 {
    color: #1c3f70;
    font-weight: 600;
}

#about .icon-box p {
    color: #444;
    font-size: 0.9rem;
    margin: 0;
}

.about-img {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/*card*/
@media (max-width: 991px) {
    .carousel-control-prev,
    .carousel-control-next {
        top: auto; /* üstten ortalama iptal */
        bottom: -50px; /* kartın altına al */
        transform: none;
        width: 40px;
        height: 40px;
    }

    /* Ortalamak için */
    #aboutCards {
        padding-bottom: 60px; /* butonlar için altta boşluk bırak */
    }

    .carousel-control-prev {
        left: 40%;
    }

    .carousel-control-next {
        right: 40%;
    }
}

.fw-bold,
.text-muted.mb-0 {
    text-align: center;
}

/*cardbitis*/

/*ikon*/
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0d6efd; /* Bootstrap primary blue */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff; /* ikon beyaz */
    font-size: 28px; /* ikon boyutu */
}

/*ikonbitis*/

/*servicebaslangıc*/
/* Genel section */
#services {
    background: #f8f9fa;
}

/* Container */
.containerservices {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Başlık */
.sectionservice-title {
    font-size: 32px;
    font-weight: 700;
    color: #012970;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 30px;
    max-width: 95%;
    line-height: 1.6;
}

/* Accordion */
.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: 600;
    font-size: 16px;
    color: #012970;
    padding: 18px 20px;
    background: #fff;
    border: none;
    border-radius: 6px;
    box-shadow: none;
    transition: all 0.3s ease;
}

.accordion-button:hover {
    color: #0d6efd;
}

.accordion-button .fw-bold {
    color: #0d6efd;
    font-size: 16px;
    margin-right: 10px;
    min-width: 32px;
    text-align: center;
}

.accordion-button .ms-2 {
    flex-grow: 1;
    text-align: left;
}

.accordion-button::after {
    transform: rotate(270deg); /* → */
    transition: transform 0.2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(360deg); /* ↓ */
}

.accordion-button:not(.collapsed) {
    background: #f0f6ff;
    color: #0d6efd;
}

.accordion-body {
    font-size: 15px;
    color: #444;
    padding: 15px 20px;
    border-top: 1px solid #e0e0e0;
    background: #fff;
    line-height: 1.6;
}

/* Görsel */
.service-illustration {

    max-width: 90%; /* her ekrana göre küçülür */
    height: auto; /* orantıyı korur */
    max-height: 400px;

}

.left-services {
    padding-left: 0;
}

.serviceSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.serviceSwiper img {
    width: 100%;
    /*height: 500px;*/
    min-height: 450px;
    object-fit: cover;
    border-radius: 12px;
}


/*servicebitis*/
/* Projects Section */
.section-bg-blue {
    background-color: #37517e;
    color: #fff;
}

.section-bg-blue h2 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.section-bg-blue p {
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 25px;
    line-height: 1.6;
}

.section-bg-blue .btn-primary {
    background: linear-gradient(90deg, #47b2e4, #31a7d3);
    border: none;
    padding: 12px 28px;
    border-radius: 50px; /* oval */
    font-weight: 600;
    transition: 0.3s;
}

.section-bg-blue .btn-primary:hover {
    background: linear-gradient(90deg, #31a7d3, #1d6fa5);
    transform: translateY(-2px);
}

/* Chart Canvas */
#projectsChart {
    max-width: 100%;
    height: 400px !important;
}

/*yukarı butonu css baslangıcı*/
#yukariBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background-color: #0d6efd;
    color: #fff;
    border: none;
    padding: 12px 14px;
    border-radius: 60%;
    cursor: pointer;
    font-size: 17px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#yukariBtn:hover {
    background-color: #0b5ed7;
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    #yukariBtn {
        bottom: 15px;
        right: 15px;
        padding: 10px 12px;
        font-size: 18px;
    }
}

/*yukarı butonu css bitis*/

/*kartlar css baslangıc*/
.swiper {
    padding: 20px 0;
    padding-bottom: 40px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch; /* her kart aynı hizada olsun */
}

.swiper-slide a {
    display: flex;
    flex: 1; /* kart linki tüm slide alanını doldursun */
}

.swiper-slide .card {
    display: flex;
    flex-direction: column;
    flex: 1; /* eşit yükseklik */
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
    max-width: 250px;
    min-height: 300px;
}

.swiper-slide .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.swiper-slide .card-text {
    flex-grow: 1;
}

.swiper-pagination {
    bottom: 10px !important;
}


@media (max-width: 576px) {
    .swiper {
        padding-bottom: 60px;
    }

    .swiper-pagination {
        bottom: 15px !important;
    }
}

@media (min-width: 1200px) and (max-width: 1400px) {
    .swiper-slide .card {
        min-height: 300px;
    }
}

@media (max-width: 550px) {
    .swiper-slide .card {
        margin: 0 auto;
    }
}

/* Genel konum */


/*kartlar css bitis*/
.process-steps {
    position: relative;
    flex-wrap: nowrap;
}

.process-steps .circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #3B82F6; /* daha pastel mavi */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin: auto;
    position: relative;
    z-index: 2; /* çizginin üstünde kalsın */
}

.process-steps .line {
    flex: 1;
    height: 2px;
    background: #3B82F6;
    position: relative;
    top: -20px; /* dairenin tam ortasından geçmesi için */
    z-index: 1;
}

.process-steps .step p {
    font-size: 0.9rem;
    color: #1a2a4d;
}

/* ik danısmanlık css baslangıc*/
#ik-danismanlik .accordion-button {
    background-color: #2c3e50;
    color: #fff;
    font-weight: 600;
    border: none;
}

#ik-danismanlik .accordion-button:not(.collapsed) {
    background-color: #1e2d3a;
    color: #fff;
    box-shadow: none;
}

#ik-danismanlik .accordion-item {
    border: none;
    border-radius: 8px;
    overflow: hidden;
}

#ik-danismanlik .accordion-body {
    background: #ffffff;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
}

#ik-danismanlik .fw-bold.text-primary {
    color: #47b2e4 !important;
}

/*ik danısmanlık css bitis*/
#ikdanismanlik .row.g-4 > .col-12 {
    margin-bottom: 60px; /* istediğin değer */
}

#ikdanismanlik .row.g-4 > .col-12:last-child {
    margin-bottom: 0; /* son kutuda boşluk olmasın */
}


/*egitimler detay*/
.edu-detail-card {
  background-color: #2c3d66;
  border-radius: 1rem;
}

/* Sekmeler */
.edu-detail-tabs {
  border-bottom: none;
  background-color: rgba(255,255,255,0.05);
}
.edu-detail-tabs .nav-link {
  color: rgba(255,255,255,0.7);
  border: none;
  border-bottom: 3px solid transparent;
  background-color: transparent;
  transition: all 0.3s ease;
}

.edu-detail-tabs .nav-link.active {

  border-bottom: 3px solid #ffc107;
}

/* İçerik */
.edu-detail-content {
  background-color: #2c3d66;
  border-radius: 0 0 1rem 1rem;
}
.edu-detail-content i {
  font-size: clamp(2.5rem, 5vw, 4rem);
}
.edu-detail-content h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}
.edu-detail-content p {
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.6;
}
.edu-detail-card .btn-light {
  color: #2c3d66;
  font-weight: 500;
}
.edu-detail-card .btn-outline-light:hover {
  background-color: #fff;
  color: #2c3d66;
}

/* Mobil */
@media (max-width: 576px) {
  .edu-detail-tabs .nav-link {
    font-size: 0.9rem;
    padding: 0.6rem;
  }
  .edu-detail-card {
    border-radius: 0.8rem;
  }
}



/*egitimler detay bitis*/


/*keyframes*/
@keyframes click {
    0%, 100% {
        transform: scale(1);
    }
    30% {
        transform: scale(0.9) translateY(2px);
    }
    60% {
        transform: scale(1);
    }
}

.click-anim {
    display: inline-block;
    animation: click 1.2s infinite;
    transform-origin: center center;
}


.announcement-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 30px;
    background: #fff;
}

.announcement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


/* Footer liste stili */
.footer-menu .footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu .footer-list li {
    margin-bottom: 10px; /* her satır eşit boşluk */
    line-height: 1.8rem; /* eşit yükseklik */
}

.footer-menu .footer-list li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
    display: inline-block;
    width: 100%; /* tüm satırı kaplasın */
}

.footer-menu .footer-list li a:hover {
    color: #0d6efd; /* hover rengi */
}

.footer-list {
    text-align: center;
}


@media (min-width: 767px) and (max-width: 992px) {

    .col-md-6 {
        flex: 1 0 auto;
    }
}

/* === Hero alanı === */
.announcement-hero {
    position: relative;
    width: 100%;
    background-color: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
    padding: 60px 0 20px;
}


.announcement-hero img {
    max-width: 50%;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: brightness(97%);
}

.announcement-hero img:hover {
    transform: scale(1.03);
    filter: brightness(100%);
}

/* Breadcrumb solda */
.breadcrumb-overlay {
    position: absolute;
    top: 20px;
    left: 40px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 18px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
    backdrop-filter: blur(5px);
    z-index: 10;
}

.breadcrumb-overlay a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-overlay a:hover {
    text-decoration: underline;
}


@media (max-width: 992px) {
    .announcement-hero {
        padding-top: 70px;
    }

    .breadcrumb-overlay {
        left: 20px;
        top: 15px;
        font-size: 0.9rem;
        padding: 6px 14px;
    }

    /*.announcement-hero img {*/
    /*    max-width: 95%;*/
    /*}*/
}

@media (max-width: 576px) {
    .announcement-hero {
        padding-top: 90px;
    }

    .breadcrumb-overlay {
        position: absolute;
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        width: 90%;
        background: rgba(255, 255, 255, 0.85);
    }

    /*.announcement-hero img {*/
    /*    max-width: 100%;*/
    /*}*/
}

/* Dış kutu */
/* === DİL SEÇİCİ (LANG DROPDOWN) === */

/* Dış kapsayıcı */
.lang-dropdown {
    position: relative;
    margin-top: 4px; /* navbar öğeleriyle arası */
    margin-bottom: 4px;
}






.lang-dropdown {
    position: relative;
    display: inline-block;
}



.lang-btn {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 120px; /* sabit genişlik */
    text-align: center;
}

.lang-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 6px rgba(71, 178, 228, 0.4);
}


.lang-menu {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    width: 120px; /* aynı genişlik */
    background-color: #1a3d6d;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    padding: 6px 0;
    text-align: left;
}


.lang-dropdown.show .lang-menu {
    display: block;
}


.lang-item {
    background: none;
    border: none;
    color: #fff;
    width: 100%;
    text-align: left;
    padding: 8px 12px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    transition: background 0.2s ease;
}

.lang-item:hover {
    background-color: #47b2e4;
    color: #fff;
}


.lang-menu li:not(:last-child) {
    margin-bottom: 3px;
}




/* === AÇIK POZİSYONLAR === */
.pozisyonlar-bolumu {
  padding: 80px 0;
  background-color: #f8fafc;
}

.pozisyonlar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.pozisyonlar-baslik {
  margin-bottom: 40px;
}

.pozisyonlar-title {
  font-size: 32px;
  font-weight: 700;
  color: #012970;
}

.pozisyonlar-aciklama {
  color: #6c757d;
  font-size: 16px;
  margin-top: 10px;
}

/* TABLO */
.pozisyonlar-tablo-wrapper {
  width: 100%;
  overflow-x: auto;
}

.pozisyonlar-tablo {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #dee2e6;
  background-color: #fff;
}

.pozisyonlar-tablo th,
.pozisyonlar-tablo td {
  border: 1px solid #dee2e6;
  padding: 15px 20px;
  text-align: left;
  vertical-align: top;
}

.pozisyonlar-tablo th {
  background-color: #f1f4ff;
  font-weight: 600;
  color: #012970;
}

.pozisyon-satiri {
  transition: background-color 0.2s ease;
  cursor: pointer;
}

.pozisyon-satiri:hover {
  background-color: #e9f2ff;
}

.pozisyon-adi {
  color: #0d6efd;
  font-weight: 600;
  width: 30%;
}

.pozisyon-aciklama {
  color: #555;
}

/* Mobil görünüm */
@media (max-width: 768px) {
  .pozisyonlar-tablo thead {
    display: none;
  }

  .pozisyonlar-tablo, .pozisyonlar-tablo tbody, .pozisyonlar-tablo tr, .pozisyonlar-tablo td {
    display: block;
    width: 100%;
  }

  .pozisyonlar-tablo tr {
    margin-bottom: 15px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
  }

  .pozisyonlar-tablo td {
    padding: 10px 15px;
    border: none;
    border-bottom: 1px solid #eee;
  }

  .pozisyonlar-tablo td:last-child {
    border-bottom: none;
  }

  .pozisyon-adi {
    background-color: #f1f4ff;
    font-weight: 700;
    color: #012970;
  }
}

.choices[data-type*="select-multiple"] .choices__list--dropdown,
.choices[data-type*="select-one"] .choices__list--dropdown {
  top: 100% !important;
  bottom: auto !important;
  margin-top: 4px;
}


.choices__list--dropdown {
  max-height: 180px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}


.choices__list--dropdown::-webkit-scrollbar {
  width: 6px;
}
.choices__list--dropdown::-webkit-scrollbar-thumb {
  background-color: #b5b5b5;
  border-radius: 4px;
}
.choices__list--dropdown::-webkit-scrollbar-thumb:hover {
  background-color: #7d7d7d;
}