:root {
    --teal: #009bc3;
    --teal-dark: #009bc3;
    --panel: #ffffffcc;
}

html,
body {
    height: 100%;
    margin: 0;
    font-family: Inter, Segoe UI, Arial;
    background: #eef2f5;
}

.stage {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.map {
    width: 100%;
    height: 100%;
}

/* Sol menü düzenlemeleri */
.left-menu {
    position: absolute;
    left: 0px;
    top: 45%;
    transform: translateY(-50%);
    /*width: 45px;*/
    background: linear-gradient(180deg, #009bc3, #009bc3);
    border-radius: 0px 20px 20px 0px;
    padding: 12px;
    box-shadow: 0 8px 24px rgba(3, 63, 70, 0.18);
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: center;
    overflow: visible;
    z-index: 10; /* Menüyü ön planda tutmak için */
}

    .left-menu button {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        border: 0;
        background: rgba(255, 255, 255, 0);
        backdrop-filter: blur(4px);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 600;
        position: relative;
        transition: background 0.2s;
    }

        .left-menu button:hover {
            background: #ffffff00 !important;
        }

    .left-menu .logo {
        overflow: visible;
    }

        .left-menu .logo:hover {
            background: #fff;
            border-radius: 9px;
        }

        .left-menu .logo img {
            width: 62px;
            height: 62px;
            border: 0;
            transition: all 0.3s ease;
        }

        .left-menu .logo:hover img {
            content: url("/Areas/WEBPortal/Content1/suen-logo-big.png");
            margin-left: 140px;
            width: 202px !important;
            height: 80px;
            transition: all 0.3s ease;
        }

    .left-menu button i {
        font-size: 20px;
    }

    .left-menu button:hover i,
    .left-menu button:hover .label {
        color: #026d89;
    }

    .left-menu button .label {
        position: absolute;
        left: 0px;
        background: white;
        color: var(--teal-dark);
        padding: 10px 20px 12px 45px;
        border-radius: 100px;
        white-space: nowrap;
        z-index: -1;
        font-size: 14px;
        font-weight: 600;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        opacity: 0;
        transform: translateX(-10px);
        transition: opacity 0.25s ease, transform 0.25s ease;
        pointer-events: none;
    }

    .left-menu button:hover .label {
        opacity: 1;
        transform: translateX(0);
    }

@media (max-width: 700px) {
    .left-menu button {
        width: 36px;
        height: 36px;
    }

    .left-menu .logo {
        width: 120px;
        height: 40px;
        margin-left: 85px;
    }
}

/* sağ panel */
.right-panel {
    position: absolute;
    right: 28px;
    top: 70px;
    width: 220px;
    background: #009bc387;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    cursor: move;
    user-select: none;
    z-index: 9999;
}

    .right-panel h3 {
        margin: 0 0 10px 0;
        font-size: 15px;
        color: var(--teal-dark);
    }

.pill {
    display: block;
    padding: 10px 12px;
    margin-bottom: 10px;
    border-radius: 12px;
    border: 2px solid rgba(0, 0, 0, 0.06);
    background: #fff;
    font-weight: 600;
    color: #009bc3;
}

    .pill:hover {
        background: #026d89;
        color: #fff;
        cursor: pointer;
    }

.select {
    width: 100%;
    padding: 8px;
    margin-top: 6px;
    border-radius: 10px;
    border: 1px solid #d6e6e9;
}

.bottom-bar {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 18px;
    background: #009bc387;
    padding: 10px;
    border-radius: 10px;
    /*display: flex;*/
    gap: 10px;
    align-items: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    z-index: 9999;
    width: 700px;
}

.date {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #d1e6e9;
    background: white;
}

.btn {
    padding: 9px 14px;
    border-radius: 8px;
    border: 0;
    background: #026d89;
    color: white;
    font-weight: 700;
    cursor: pointer;
}

    .btn.secondary {
        background: #fff;
        color: #026d89;
        border: 1px solid #d4f0f2;
    }

@media (max-width: 700px) {
    .bottom-bar {
        width: 95%;
        bottom: 0;
        left: 0;
        transform: none;
        padding: 10px !important;
    }
}

/* Modal stil */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 0 auto;
    padding: 10px 20px;
    border: 1px solid #888;
    width: 80%;
    border-radius: 20px !important;
    /*max-height: 80vh;*/
    min-height: 70vh;
}

    .modal-content h2 {
        border-bottom: 3px solid #ebebeb;
        padding-bottom: 20px;
        color: #009bc3;
        font-weight: 500;
        font-size: 20px;
    }

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

.map {
    z-index: 1;
}

.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    overflow-y: auto;
    max-height: 600px;
}

.content {
    width: 78%;
    padding-right: 20px;
    overflow-y: auto;
    max-height: 575px;
    position: relative;
}

.sidebar {
    width: 20%;
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .content,
    .sidebar {
        width: 100%;
        margin-bottom: 20px;
    }
}

.right-panel {
    position: fixed;
    right: 20px;
    top: 110px;
    width: 250px;
    background: #009bc36b;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    font-family: sans-serif;
}


.right-panel-istatistik {
    position: fixed;
    right: 20px;
    top: 47%;
    width: 20%;
    background: #009bc36b;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    font-family: sans-serif;
    z-index: 9999;
}

.istatistik-content {
}

.slider-container {
    position: relative;
    overflow: hidden;
    /*height: 350px;*/
}

.slider {
    display: flex;
    transition: transform 0.4s ease;
    width: 100%;
}

.slide {
    min-width: 100%;
    padding: 5px;
    box-sizing: border-box;
    text-align: center;
}

.select {
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-top: 8px;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 8px 0;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    transition: background 0.3s;
}

    .dot.active {
        background: #009bc3;
    }

.rightClose {
    transform: translateX(110%);
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 700px) {
    .bottom-bar {
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 10px !important;
        gap: 8px !important;
    }

        .bottom-bar .btn,
        .bottom-bar .date {
            width: calc(100% - 20px);
            margin: 0 auto;
            display: block;
            text-align: center;
            white-space: normal;
            overflow: visible;
        }
}

@media (max-width: 700px) {
    .left-menu button {
        width: 38px !important;
        height: 38px !important;
    }
}

@media (max-width: 400px) {
    .bottom-bar {
        padding: 8px 6px !important;
        gap: 6px !important;
    }

        .bottom-bar .btn,
        .bottom-bar .date {
            font-size: 13px;
            padding: 8px 10px;
        }
}

/* ---------- END ---------- */

.tab-container {
    width: 100%;
    font-family: "Poppins", sans-serif;
}

.tab-header {
    display: flex;
    border-bottom: 2px solid #e0e0e0;
    gap: 10px;
}

.tab-btn {
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
    border-radius: 8px 8px 0 0;
}

    .tab-btn:hover {
        background: #eaeaea;
    }

    .tab-btn.active {
        background: #009bc3;
        color: white;
        font-weight: 500;
    }

.tab-content {
    display: none;
    padding: 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    min-height: 400px;
}

    .tab-content.active {
        display: block;
    }

#chartdiv {
    width: 100%;
    height: 500px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

thead {
    color: #009bc3;
}

th,
td {
    padding: 10px 14px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

tbody tr:hover {
    background-color: #f9f9f9;
}

tbody tr:last-child td {
    border-bottom: none;
}

th {
    font-weight: 600;
    letter-spacing: 0.3px;
}

td {
    color: #333;
}

/* ✅ Responsive görünüm */
@media (max-width: 700px) {
    table,
    thead,
    tbody,
    th,
    td,
    tr {
        display: block;
    }

    thead {
        display: none;
    }

    tr {
        margin-bottom: 12px;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 10px;
    }

    td {
        text-align: left;
        padding: 8px 10px;
        border: none;
        position: relative;
    }

        td::before {
            content: attr(data-label);
            font-weight: 600;
            color: #007bff;
            display: block;
            margin-bottom: 4px;
        }
}

.virusKod {
    position: absolute;
    z-index: 9999;
    margin: 0;
    padding: 0;
    right: 3%;
    list-style: none;
    top: 60px;
}

    .virusKod li {
        float: right;
        padding: 5px 15px 10px 15px;
        margin: 5px;
        background: #fff;
        border-radius: 8px !important;
        color: #009bc3;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    }

        .virusKod li:hover {
            cursor: pointer;
            background: #026d89;
            color: #fff;
        }

        .virusKod li.active {
            background: #009bc3;
            color: #fff;
        }

@media (max-width: 700px) {
    .left-menu .logo:hover img {
        margin-left: 0px !important;
        width: 115px !important;
        height: 45px !important;
        margin-top: -3px;
    }
}

.filter-toggle {
    position: relative;
    display: none;
    bottom: 163px;
    left: 50%;
    transform: translateX(-50%);
    background: #009bc3;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    z-index: 999999;
    transition: transform 0.3s ease;
}

    .filter-toggle.active {
        transform: translateX(-50%) rotate(180deg);
    }

/* Mobilde filtre bar başlangıçta gizli */
@media (max-width: 700px) {
    .filter-toggle {
        display: block;
    }

    .left-menu .logo img {
        width: 45px;
        height: 45px;
        border: 0;
        transition: all 0.3s ease;
    }

    .bottom-bar {
        bottom: -225px;
        transition: bottom 0.3s ease;
    }

        .bottom-bar.show {
            bottom: 0;
        }

    .card-container {
        grid-template-columns: repeat(auto-fit, minmax(48%, 1fr)) !important;
    }
}

.card-wrapper {
    display: flex;
    flex-direction: column;
    max-height: 600px;
    overflow-y: auto; /* scroll burada olmalı */
}

.card-container {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, 23%);
    gap: 24px;
    /*overflow-y: scroll;
    max-height: 490px;*/
}

.card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .card:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

.card-content {
    padding: 16px;
}

.card-container .titleLink {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 8px;
    font-weight: 700;
    text-decoration: none;
}

    .card-container .titleLink:hover {
        color: #026d89;
        cursor: pointer;
    }

.card-content p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
    margin-bottom: 12px;
}


.pagination .btn {
    display: inline-block;
    background: #00b7c2;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.2s;
}

    .pagination .btn:hover {
        background: #008da1;
    }

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 8px;
}

.page-btn {
    border: none;
    background: #f0f0f0;
    color: #333;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    transition: background 0.2s;
}

    .page-btn:hover {
        background: #00b7c2;
        color: #fff;
    }

    .page-btn.active {
        background: #00b7c2;
        color: #fff;
    }

.anaLogo {
    position: absolute;
    z-index: 999;
    left: 10px;
    top: 10px;
}

.DilSelect {
    position: absolute;
    z-index: 999;
    right: 3%;
    border-radius: 8px !important;
    top: 10px;
    border: 1px solid #ccc;
    height: 35px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    background: #009ac2;
    color: #fff;
    font-size: 12px;
    padding: 4px;
}

:root {
    --accent: #4f46e5;
    --light-bg: #f3f6ff;
    --text: #0f172a;
    --muted: #6b7280;
    --radius: 14px;
    --shadow: 0 6px 20px rgba(15,23,42,0.08);
}

.IletisimBody {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(45%,1fr));
    gap: 20px;
}

.iletisimCard {
    border-radius: var(--radius);
    padding: 16px 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid #009bc31c;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .iletisimCard:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(15,23,42,0.06);
    }

    .iletisimCard i {
        font-size: 22px;
        color: #009bc3;
        background: #009bc31c;
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        flex-shrink: 0;
        margin-top: 4px;
    }

    .iletisimCard b {
        font-size: 15px;
        color: #009bc3;
        display: block;
        margin-bottom: 4px;
    }

    .iletisimCard span {
        font-size: 14px;
        color: var(--muted);
    }

    .iletisimCard div {
        display: flex;
        flex-direction: column;
    }

@media (max-width:600px) {
    .IletisimBody {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}

.kapakFoto {
    float: left;
    width: 50%;
    border-radius: 10px !important;
    margin: 10px 25px 10px 10px;
    transform: translateY(-4px);
    box-shadow: 8px 9px 24px rgb(15 23 42 / 26%);
}

.text-justify {
    text-align: justify;
}

/*****************/

.DosyaBody {
    display: grid;
    grid-template-columns: repeat(auto-fill, 20%);
    gap: 15px;
    justify-content: start;
}



@media (max-width:1000px) {

    .DosyaBody {
        display: grid;
        grid-template-columns: repeat(auto-fill, 100%);
        gap: 15px;
        justify-content: start;
    }
}


.DosyaCard {
    border-radius: var(--radius);
    padding: 16px 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid #009bc31c;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .DosyaCard:hover {
        cursor: pointer;
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(15,23,42,0.06);
    }

    .DosyaCard i {
        font-size: 22px;
        color: #009bc3;
        background: #009bc31c;
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        flex-shrink: 0;
        margin-top: 4px;
    }

    .DosyaCard b {
        font-size: 15px;
        color: #009bc3;
        display: block;
        padding-top: 15px;
    }


    .DosyaCard div {
        display: flex;
        flex-direction: column;
    }

.Dosyalar {
    float: left;
    width: 100%;
}


#gallery {
    width: 100%;
    float: left;
    padding-top: 15px;
}

.gallery-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: flex-start;
}

    .gallery-wrapper a {
        display: inline-block;
    }

    .gallery-wrapper img {
        width: 200px;
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
        cursor: pointer;
        transition: transform 0.2s ease;
    }

        .gallery-wrapper img:hover {
            transform: scale(1.05);
        }


@media (max-width: 380px) {
    .content-wrapper {
        max-height: 425px;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .kapakFoto {
        width: 100%;
    }
}

.geriBtn {
    float: right;
    margin-right: 25px;
    cursor: pointer;
    font-size:15px;
}

.sidebar ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.sidebar a {
    border-bottom: 1px solid #eee !important;
    cursor: pointer;
}

.sidebar ul li > a {
    display: block;
    padding: 3px 0px;
    color: #222;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
}

    .sidebar ul li > a:hover {
        font-weight: 700;
        color: #0d6efd;
    }

.sidebar ul li ul.dropdown {
    display: block;
    padding-left: 0px;
}

.sidebar ul li ul li ul.dropdown {
    display: block;
    padding-left: 15px;
}


.sidebar ul li ul.dropdown li {
    border: none;
}

    .sidebar ul li ul.dropdown li a {
        display: block;
        font-size: 14px;
        padding: 8px 15px;
        color: #444;
        text-decoration: none;
        transition: all 0.2s ease;
    }

        .sidebar ul li ul.dropdown li a:hover {
            font-weight: 700;
        }



.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 12px;
    max-width: 640px;
    background: #fff;
}

.stat-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2px;
    text-align: center;
}

    .stat-card.big2 {
        grid-column: span 2;
        height: 20px;
    }
.stat-label2 {
    margin-top: 2px;
    font-size: 13px;
    color: #555;
    line-height: 15px;
}

    .stat-card.big {
        grid-column: span 1;
        height: 60px;
    }

.stat-number {
    font-size: 30px;
    font-weight: 700;
}

.stat-label {
    margin-top: 4px;
    font-size: 13px;
    color: #555;
    line-height: 15px;
}

.small-grid {
    grid-column: span 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.stat-card.small .stat-number {
    font-size: 22px;
}

/* Colors */
.green {
    color: #24b040;
}

.blue {
    color: #237ddb;
}

.teal {
    color: #15b8c0;
}

.orange {
    color: #e67e22;
}

.gray {
    color: #999;
}

/* Population section */
.stat-pop {
    grid-column: span 2;
    background: #fafafa;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    padding: 14px;
    /*display: flex;*/
    gap: 12px;
}

.pop-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.pop-bar {
    width: 100%;
    height: 12px;
    background: #eee;
    border-radius: 6px;
    margin-bottom: 10px;
}

.pop-fill {
    height: 100%;
    background: #f39c12;
    border-radius: 6px;

    display: flex;
    justify-content: flex-end; 
    align-items: center;
    padding-right: 6px;
    color: #fff;
    font-weight: 600;
    font-size:12px;
}

.pop-data {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

.mini-label {
    color: #555;
}

.mini-num {
    font-weight: 600;
}

.turkiye-icon {
    font-size: 13px;
    font-weight: 600;
}

.timeline-container {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 90%;
    height: 30px;
    box-sizing: border-box;
}

.arrow {
    font-size: 20px;
    color: #004a63;
    cursor: pointer;
    user-select: none;
}

.current-date {
    font-size: 16px;
    font-weight: bold;
    color: #004a63;
    white-space: nowrap;
}

.timeline {
    position: relative;
    flex: 1;
    height: 3px;
    background: #fff;
    margin: 0 10px;
}

.tick {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50px !important;
    background: #ffffff;
    top: -3px;
}

.timeline .label {
    position: absolute;
    top: 10px;
    font-size: 13px;
    transform: translateX(-50%);
    white-space: nowrap;
}

#next {
    margin-right: 15px;
}

#prev {
    margin-left: 15px;
    margin-right: 10px;
}

.triangle {
    position: absolute;
    top: -15px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #004a63;
    transition: left 0.3s ease;
}

@media (max-width: 600px) {
    .timeline-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .timeline {
        width: 100%;
        margin: 8px 0;
    }

    .current-date {
        font-size: 14px;
    }

    .timeline .label {
        font-size: 12px;
    }
}

.renkKartela {
    position: absolute;
    z-index: 9999;
    left: 60px;
    bottom: 10px;
    background: #fff;
    border-radius: 10px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 10px;
}

    .renkKartela .solKartela
    /*.renkKartela .sagKartela*/ {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1px 25px;
        list-style: none;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 4px;
        font-size: 12px;
        margin: 0;
    }
        .renkKartela .solKartela li
        /*.renkKartela .sagKartela li*/ {
            padding-left: 3px;
            position: relative;
        }
            .renkKartela .solKartela li span
            /*.renkKartela .sagKartela li span */{
                width: 10px;
                height: 10px;
                left: -14px;
                background: #ccc;
                position: absolute;
                top: 3px;
            }
                /*.renkKartela .solKartela li span.renk1 {
                    background: #689155
                }
                .renkKartela .solKartela li span.renk2 {
                    background: #9dc58b;
                }
                .renkKartela .solKartela li span.renk3 {
                    background: #b2d294;
                }
                .renkKartela .sagKartela li span.renk4 {
                    background: #eaefb9
                }
                .renkKartela .sagKartela li span.renk5 {
                    background: #70bacf
                }
                .renkKartela .sagKartela li span.renk6 {
                    background: #d7eff5
                }*/

.Katmandropdown {
    position: absolute;
    z-index: 9999;
    margin-right: 10px;
    padding: 0;
    right: calc(3% + 150px);
    list-style: none;
    top: 11px;
}

.Katmandropbtn {
    padding: 6px 12px;
    cursor: pointer;
    background-color: #009bc3;
    color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px !important;
}

.Katmandropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    border: 1px solid #ccc;
    z-index: 1;
    padding: 8px 0;
}

    .Katmandropdown-content label {
        display: block;
        padding: 4px 12px;
        cursor: pointer;
        font-size: 13px;
    }

.Katmandropdown:hover .Katmandropdown-content {
    display: block;
}
