﻿@media screen and (max-width: 800px) {
    #eNabizVideoButonu {
        display: none;
    }

    .block.block-bordered {
        margin-top: 55pt;
    }
}

@media screen and (max-width: 500px) {
    #bildirimDiv {
        display: none;
    }
}
.label-purple {
    background-color: #6f42c1 !important; /* Mor ton */
    color: #fff !important;
    border-radius: 15px;
}
.label-darkgreen {
    background-color: darkgreen !important;
    color: #fff !important;
    border-radius: 15px;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f6f9;
    color: #333;
}
.borderRadius8pt {
    border-radius: 8pt !important;
}
.required-star {
    margin-left: 8px;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: rgba(220, 53, 69, 0.1); /* Yumuşak kırmızı arka plan */
    color: rgba(220, 53, 69, 1); /* Koyu kırmızı metin */
    text-align: center;
    line-height: 16px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    animation: fadeInBlink 2s infinite ease-in-out;
    box-shadow: 0 0 4px rgba(220, 53, 69, 0.3); /* Hafif bir gölge */
    cursor: pointer; /* Kullanıcıya tıklanabilir olduğunu hissettirmek */
}

    .required-star::before {
        content: '!';
        font-size: 12px; /* Daha küçük simge */
    }

    /* Tooltip Stili */
    .required-star:hover::after {
        content: 'Bu alan zorunludur'; /* Tooltip mesajı */
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgba(0, 0, 0, 0.7); /* Koyu arka plan */
        color: white;
        padding: 5px;
        border-radius: 5px;
        font-size: 12px;
        opacity: 0;
        animation: tooltipFadeIn 0.3s forwards;
    }

.required-star-warning {
    margin-left: 8px;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: rgba(220, 198, 53, 0.1); /* Yumuşak sarı arka plan */
    color: rgba(255, 165, 0); /* Koyu sarı metin */
    text-align: center;
    line-height: 16px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    animation: fadeInBlink 2s infinite ease-in-out;
    box-shadow: 0 0 4px rgba(220, 53, 69, 0.3); /* Hafif bir gölge */
    cursor: pointer; /* Kullanıcıya tıklanabilir olduğunu hissettirmek */
}

    .required-star-warning::before {
        content: '!';
        font-size: 12px; /* Daha küçük simge */
    }

    /* Tooltip Stili */
    .required-star-warning:hover::after {
        content: 'Bu alan zorunludur'; /* Tooltip mesajı */
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgba(0, 0, 0, 0.7); /* Koyu arka plan */
        color: white;
        padding: 5px;
        border-radius: 5px;
        font-size: 12px;
        opacity: 0;
        animation: tooltipFadeIn 0.3s forwards;
    }

/* Tooltip animasyonu */
@keyframes tooltipFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Animasyon */
@keyframes fadeInBlink {
    0%, 100% {
        opacity: 0.2;
        transform: scale(0.9);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem);
}

.modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background-color: #007bff;
    color: #fff;
    padding: 20px;
    border-bottom: none;
}

    .modal-header .close {
        color: #fff;
        opacity: 1;
    }

        .modal-header .close span {
            font-size: 24px;
        }

.modal-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    z-index: auto;
}

.modal-body {
    padding: 30px;
    background-color: #fff;
}

.form-horizontal .form-group {
    margin-bottom: 1.0rem;
}

.control-label {
    font-weight: 600;
    color: #555;
}

.control-label-popup-icin {
    font-size: 11px;
    padding-top: 7px;
    margin-bottom: 0;
    text-align: right;
    font-weight: 600;
    color: #555;
}

.form-control {
    border-radius: 8px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

    .form-control:focus {
        border-color: #007bff;
        box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
    }

.modern-textbox {
    padding: 10px;
    font-size: 14px;
}

.modal-footer {
    background-color: #f8f8f8c0;
    padding: 20px;
    border-top: none;
    display: flex;
    justify-content: flex-end;
}

.save-button {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    transition: background-color 0.3s, border-color 0.3s;
}

    .save-button:hover {
        background-color: #0056b3;
        border-color: #0056b3;
    }

    .save-button .fa-save {
        margin-right: 5px;
    }

.toggle-switch {
    display: none;
}

.toggle-label {
    display: inline-block;
    width: 50px;
    height: 25px;
    background-color: #ccc;
    border-radius: 25px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .toggle-label::after {
        content: "";
        display: block;
        width: 23px;
        height: 23px;
        background-color: #fff;
        border-radius: 50%;
        position: absolute;
        top: 1px;
        left: 1px;
        transition: transform 0.3s;
    }

.toggle-switch:checked + .toggle-label {
    background-color: #4caf50;
}

    .toggle-switch:checked + .toggle-label::after {
        transform: translateX(25px);
    }

.form-horizontal .control-label {
    font-size: 11px;
    padding-top: -1px;
}

.form-horizontal {
    font-size: 11px;
}

.form-horizontal1 .control-label {
    font-size: 15px;
    padding-top: -1px;
}

.form-horizontal1 {
    font-size: 15px;
}

/* Grid başlıkları için stil */
.k-grid-header .k-header {
    overflow: visible !important; /* Taşan içeriği göster */
    white-space: normal !important; /* Metni otomatik olarak satır sonlarında sar */
    /*word-wrap: break-word;*/ /* Uzun kelimeleri satır sonlarında böl */
    hyphens: auto; /* Kelimeleri otomatik olarak tire ile böl (destekleyen tarayıcılar için) */
    text-align:left !important;
}

/* Başlık içindeki linkler için stil */
.k-header .k-link {
    text-align: center; /* Metni ortala */
    border-radius: 15px; /* Köşeleri yuvarlat */
    display: inline-block; /* Linklerin genişliğini içeriğe göre ayarla */
    /*padding: 5px 10px;*/ /* İç boşluk ekle */
    background-color: transparent; /* Arka plan rengini şeffaf yap */
    transition: background-color 0.3s ease, color 0.3s ease; /* Geçiş efekti */
}

    /* Hover durumu için stil */
    .k-header .k-link:hover {
        background-color: rgba(0, 0, 0, 0.1); /* Hover durumunda arka plan rengi */
        color: #000; /* Hover durumunda metin rengi */
    }

/* IE için özel stil */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .k-grid-header .k-header {
        white-space: pre-wrap !important; /* IE için metin sarma */
    }
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.k-in {
    font-size: 15px;
    font-weight: bold;
}

.btn-group {
    position: absolute;
    vertical-align: middle;
    left: 0;
    margin-top: -10pt;
    margin-left: 15pt;
}

    .btn-group .btn {
        top: -10px;
    }

.dropdown {
    overflow: visible !important;
}

/*gridde sayfa başına kayıt sayısı ile ilgili dropdownliste veriliyor ki kayıtlar rahatça görünsün*/
.k-pager-wrap .k-dropdown {
    width: 80px;
}

.form-group {
    margin: 0.1em;
    border-radius: 15px;
}

.form-group1 {
    /* Yeni stiller buraya eklenecek */
    padding: 10px;
    text-align: center;
}

    .form-group1 label {
        color: black;
        font-weight: bold;
        background-color: white
    }

    .form-group1 input[type="radio"] {
        /* radio inputlarına özel stiller buraya eklenecek */
        margin-left: 5px;
    }

.label-soft-yesil {
    background: #6EEDA4;
    color: #000;
    border-radius: 15px;
}

.label-soft-kirmizi {
    background: #F17B6B;
    color: #000;
    border-radius: 15px;
}

.label-soft-gri {
    background: #C4C0C6;
    color: #000;
    border-radius: 15px;
}

.label-sari {
    background-color: gold;
    border-radius: 15px;
}

.label-mor {
    background-color: blueviolet;
    border-radius: 15px;
}

.label-maroon {
    background-color: #6d0303;
    color: #fdfdac;
    border-radius: 15px;
}

.label-reding {
    background-color: rgba(220, 53, 69, 0.3);
    color: white;
    border-radius: 15px;
}

.label-gs {
    background-color: rgb(78, 7, 39);
    color: white;
    border-radius: 15px;
}

.label-darkblack {
    background-color: #050000;
    color: white;
    border-radius: 15px;
}

.btn-mor {
    background-color: blueviolet;
    color: white;
}

    .btn-mor:hover {
        background-color: #7619cc;
        color: white;
    }

    .btn-mor:focus {
        background-color: blueviolet;
        color: white;
    }


.btn-eflatun {
    background-color: #b822f7;
    color: white;
}

    .btn-eflatun:hover {
        background-color: #8943ca;
        color: white;
    }

    .btn-eflatun:focus {
        background-color: #b822f7;
        color: white;
    }

.dropZoneElement {
    position: relative;
    display: inline-block;
    background-color: #f8f8f8;
    border: 1px solid #c7c7c7;
    width: 350px;
    height: 200px;
    text-align: center;
}

.btn-outline-success {
    color: #28a745;
    background-color: transparent;
    background-image: none;
    border-color: #28a745;
}

    .btn-outline-success:hover {
        color: #fff;
        background-color: #28a745;
        border-color: #28a745;
    }

.btn-active {
    color: #213f67;
    background-color: #ebeb98;
    border-color: #213f67;
}
.btn-active-important {
    color: #213f67 !important;
    background-color: #ebeb98 !important;
    border-color: #213f67 !important;
}

.btn-outline-warning {
    color: #ffc107;
    background-color: transparent;
    background-image: none;
    border-color: #ffc107;
}

    .btn-outline-warning:hover {
        color: #212529;
        background-color: #ffc107;
        border-color: #ffc107;
    }

.btn-outline-mavi-ozel {
    color: #3152de;
    background-color: transparent;
    background-image: none;
    border-color: #3152de;
}

    .btn-outline-mavi-ozel:hover {
        color: #ffffff;
        background-color: #3152de;
        border-color: #3152de;
    }

.btn-outline-danger {
    color: #dc3545;
    background-color: transparent;
    background-image: none;
    border-color: #dc3545;
    text-shadow: initial;
}

    .btn-outline-danger:hover {
        color: #fff;
        background-color: #dc3545;
        border-color: #dc3545;
    }

.btn-outline-info {
    color: #17a2b8;
    background-color: transparent;
    background-image: none;
    border-color: #17a2b8;
}

    .btn-outline-info:hover {
        color: #fff;
        background-color: #17a2b8;
        border-color: #17a2b8;
    }

.btn-outline-primary {
    color: #007bff;
    background-color: transparent;
    background-image: none;
    border-color: #007bff;
}

    .btn-outline-primary:hover {
        color: #fff;
        background-color: #007bff;
        border-color: #007bff;
    }

.label-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
    border-radius: 20px;
}

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

    .btn-secondary:hover {
        color: #fff;
        background-color: #5a6268;
        border-color: #545b62;
    }

.btn-outline-secondary {
    color: #6c757d;
    background-color: rgba(255,255,255,.4);
    border-color: #6c757d;
}

    .btn-outline-secondary:hover {
        color: #fff;
        background-color: #5a6268;
        border-color: #545b62;
    }

.btn-acikgri {
    color: #fff;
    background-color: #f4f8fb;
    border-color: #b3b9bf;
}

.btn-acik:hover {
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62;
}

.scrollable-element {
    overflow-x: auto;
    white-space: nowrap;
    color: #22436F;
}

.timeline_area {
    position: relative;
    z-index: 1;
}

.section_padding_130 {
    padding: 0px 25px;
}

.single-timeline-area {
    position: relative;
    z-index: 1;
    padding-left: 180px;
}

    .single-timeline-area .timeline-date {
        position: absolute;
        width: 180px;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -ms-grid-row-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        padding-right: 60px;
    }

.bodyHeight {
    height: 100px;
}

.single-timeline-area .timeline-date::after {
    position: absolute;
    width: 3px;
    height: 100%;
    content: "";
    background-color: #ebebeb;
    top: 0;
    right: 30px;
    z-index: 1;
}

.single-timeline-area .timeline-date::before {
    position: absolute;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: #213f67;
    content: "";
    top: 50%;
    right: 26px;
    z-index: 5;
    margin-top: -5.5px;
}

.single-timeline-area .timeline-date p {
    margin-bottom: 0;
    color: #020710;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
}

.single-timeline-area .single-timeline-content {
    position: relative;
    z-index: 1;
    padding: 30px 30px 25px;
    border-radius: 6px;
    margin-bottom: 15px;
    margin-top: 15px;
    -webkit-box-shadow: 0 0.25rem 1rem 0 rgba(47, 91, 234, 0.125);
    box-shadow: 0 0.25rem 1rem 0 rgba(47, 91, 234, 0.125);
    border: 1px solid #ebebeb;
}

    .single-timeline-area .single-timeline-content .timeline-icon {
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms;
        width: 30px;
        height: 30px;
        background-color: #213f67;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 30px;
        flex: 0 0 30px;
        text-align: center;
        max-width: 30px;
        border-radius: 50%;
        margin-right: 15px;
    }

        .single-timeline-area .single-timeline-content .timeline-icon i {
            color: #ffffff;
            line-height: 30px;
        }

    .single-timeline-area .single-timeline-content .timeline-text h6 {
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms;
    }

    .single-timeline-area .single-timeline-content .timeline-text p {
        font-size: 13px;
        margin-bottom: 0;
    }

    .single-timeline-area .single-timeline-content:hover .timeline-icon,
    .single-timeline-area .single-timeline-content:focus .timeline-icon {
        background-color: #020710;
    }

    .single-timeline-area .single-timeline-content:hover .timeline-text h6,
    .single-timeline-area .single-timeline-content:focus .timeline-text h6 {
        color: #3f43fd;
    }

.hori-timeline .events {
    border-top: 3px solid #e9ecef;
}

    .hori-timeline .events .event-list {
        display: block;
        position: relative;
        text-align: center;
        padding-top: 70px;
        margin-right: 0;
    }

        .hori-timeline .events .event-list:before {
            content: "";
            position: absolute;
            height: 24pt;
            border-right: 2px dashed #dee2e6;
            top: 3pt;
        }

        .hori-timeline .events .event-list .event-date {
            position: absolute;
            top: 38px;
            left: 0;
            right: 0;
            width: 75px;
            margin: 0 auto;
            border-radius: 4px;
            padding: 2px 4px;
        }


    .hori-timeline .events .event-list {
        display: inline-table;
        width: 24%;
        padding-top: 45px;
    }

        .hori-timeline .events .event-list .event-date {
            height: 20pt;
            width: 90%;
            font-weight: bold;
            font-size: 10pt;
        }

.bg-soft-primary {
    background-color: rgba(64,144,203,.3) !important;
}

.timeline-ek {
    margin-top: 20pt;
    border: dashed 0.5pt #c5ddef;
    margin-bottom: -10pt;
    height: 200pt;
}

.timeline-ek-text {
    height: 160pt;
}

.timeline-ek-btn {
    height: 20pt;
}


.bg-soft-success {
    background-color: rgba(71,189,154,.3) !important;
}

.bg-soft-danger {
    background-color: rgba(231,76,94,.3) !important;
}

.bg-soft-warning {
    background-color: rgba(249,213,112,.3) !important;
}

.timeline-ek p {
    font-size: 11pt;
    height: 80pt;
    margin-bottom: 5pt;
}

.timeline-ek .margin-top-5 {
    margin-top: 5pt;
    margin-bottom: 0;
}

.timeline-ek label {
    font-size: 10pt;
    height: 20pt;
}

.btn {
    cursor: pointer;
}

.div-sorular-hsg {
    border: 0.5pt dotted #ff8400;
    margin: 5pt 0pt;
    padding: 5pt 5pt;
}

.aramaCubugu {
    width: 100%;
    border: 0.5px solid #fdfdfd;
    height: 20pt;
    color: #000000;
    border-radius: 10px 10px 10px 10px;
    margin: 5pt 0pt;
    padding: 1pt 5pt;
    background-color: #fdfdfd;
    background-image: url('../Images/Icons/icons-search.gif');
    background-position: 1pt 1pt;
    background-repeat: no-repeat;
    padding: 5pt 5pt 5pt 25pt;
    background-size: contain;
}

.div-warning {
    text-align: center;
    padding: 10pt 0pt;
    border: 0.5pt dotted #ff8400;
    margin-bottom: 10pt;
    background: #fff8dd;
    color: #5e6278;
    font-weight: 900;
}

.div-danger {
    text-align: center;
    padding: 10pt 0pt;
    border: 0.5pt dotted #ff0000;
    margin-bottom: 10pt;
    background: #ffdddd;
    color: #5e6278;
    font-weight: 900;
}

.fa-warning-large {
    color: #ffc700;
    font-size: 15pt;
}

.fa-minus-circle-large {
    color: #ff0000;
    font-size: 15pt;
}

.label-baslik {
    font-weight: 900;
    font-family: 'Open Sans';
}

.div-info {
    text-align: left;
    padding: 10pt 5pt;
    border: 0.5pt dotted #43a3e5;
    margin-top: 10pt;
    background: #b1d4ec;
    color: #5e6278;
    font-weight: 900;
}

.fa-info-circle-large {
    color: #43a3e5;
    font-size: 15pt;
}

.uyari-kirmizi {
    font-weight: 900;
    color: #ac1c1c;
    font-size: 10pt;
}

.btn-bilgi {
    width: 20pt;
    height: 20pt;
    margin: auto;
    display: table;
    border-radius: 100%;
    text-align: center;
    padding: 1%;
    margin-top: 5pt;
}

.checkbox-wrapper-8 .tgl {
    display: none;
}

    .checkbox-wrapper-8 .tgl,
    .checkbox-wrapper-8 .tgl:after,
    .checkbox-wrapper-8 .tgl:before,
    .checkbox-wrapper-8 .tgl *,
    .checkbox-wrapper-8 .tgl *:after,
    .checkbox-wrapper-8 .tgl *:before,
    .checkbox-wrapper-8 .tgl + .tgl-btn {
        box-sizing: border-box;
        padding: 1pt 0;
    }

        .checkbox-wrapper-8 .tgl::-moz-selection,
        .checkbox-wrapper-8 .tgl:after::-moz-selection,
        .checkbox-wrapper-8 .tgl:before::-moz-selection,
        .checkbox-wrapper-8 .tgl *::-moz-selection,
        .checkbox-wrapper-8 .tgl *:after::-moz-selection,
        .checkbox-wrapper-8 .tgl *:before::-moz-selection,
        .checkbox-wrapper-8 .tgl + .tgl-btn::-moz-selection,
        .checkbox-wrapper-8 .tgl::selection,
        .checkbox-wrapper-8 .tgl:after::selection,
        .checkbox-wrapper-8 .tgl:before::selection,
        .checkbox-wrapper-8 .tgl *::selection,
        .checkbox-wrapper-8 .tgl *:after::selection,
        .checkbox-wrapper-8 .tgl *:before::selection,
        .checkbox-wrapper-8 .tgl + .tgl-btn::selection {
            background: none;
        }

        .checkbox-wrapper-8 .tgl + .tgl-btn {
            outline: 0;
            display: block;
            width: 4em;
            height: 2em;
            position: relative;
            cursor: pointer;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

            .checkbox-wrapper-8 .tgl + .tgl-btn:after,
            .checkbox-wrapper-8 .tgl + .tgl-btn:before {
                position: relative;
                display: block;
                content: "";
                width: 50%;
                height: 100%;
            }

            .checkbox-wrapper-8 .tgl + .tgl-btn:after {
                left: 0;
            }

            .checkbox-wrapper-8 .tgl + .tgl-btn:before {
                display: none;
            }

        .checkbox-wrapper-8 .tgl:checked + .tgl-btn:after {
            left: 50%;
        }

.checkbox-wrapper-8 .tgl-skewed + .tgl-btn {
    overflow: hidden;
    transform: skew(-10deg);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all 0.2s ease;
    font-family: sans-serif;
    background: #888;
}

    .checkbox-wrapper-8 .tgl-skewed + .tgl-btn:after,
    .checkbox-wrapper-8 .tgl-skewed + .tgl-btn:before {
        transform: skew(10deg);
        display: inline-block;
        transition: all 0.2s ease;
        width: 100%;
        text-align: center;
        position: absolute;
        line-height: 2em;
        font-weight: bold;
        color: #fff;
        text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
    }

    .checkbox-wrapper-8 .tgl-skewed + .tgl-btn:after {
        left: 100%;
        content: attr(data-tg-on);
    }

    .checkbox-wrapper-8 .tgl-skewed + .tgl-btn:before {
        left: 0;
        content: attr(data-tg-off);
    }

    .checkbox-wrapper-8 .tgl-skewed + .tgl-btn:active {
        background: #888;
    }

        .checkbox-wrapper-8 .tgl-skewed + .tgl-btn:active:before {
            left: -10%;
        }

.checkbox-wrapper-8 .tgl-skewed:checked + .tgl-btn {
    background: #86d993;
}

    .checkbox-wrapper-8 .tgl-skewed:checked + .tgl-btn:before {
        left: -100%;
    }

    .checkbox-wrapper-8 .tgl-skewed:checked + .tgl-btn:after {
        left: 0;
    }

    .checkbox-wrapper-8 .tgl-skewed:checked + .tgl-btn:active:after {
        left: 10%;
    }

.checkbox-wrapper-10 .tgl {
    display: none;
}

    .checkbox-wrapper-10 .tgl,
    .checkbox-wrapper-10 .tgl:after,
    .checkbox-wrapper-10 .tgl:before,
    .checkbox-wrapper-10 .tgl *,
    .checkbox-wrapper-10 .tgl *:after,
    .checkbox-wrapper-10 .tgl *:before,
    .checkbox-wrapper-10 .tgl + .tgl-btn {
        box-sizing: border-box;
    }

        .checkbox-wrapper-10 .tgl::-moz-selection,
        .checkbox-wrapper-10 .tgl:after::-moz-selection,
        .checkbox-wrapper-10 .tgl:before::-moz-selection,
        .checkbox-wrapper-10 .tgl *::-moz-selection,
        .checkbox-wrapper-10 .tgl *:after::-moz-selection,
        .checkbox-wrapper-10 .tgl *:before::-moz-selection,
        .checkbox-wrapper-10 .tgl + .tgl-btn::-moz-selection,
        .checkbox-wrapper-10 .tgl::selection,
        .checkbox-wrapper-10 .tgl:after::selection,
        .checkbox-wrapper-10 .tgl:before::selection,
        .checkbox-wrapper-10 .tgl *::selection,
        .checkbox-wrapper-10 .tgl *:after::selection,
        .checkbox-wrapper-10 .tgl *:before::selection,
        .checkbox-wrapper-10 .tgl + .tgl-btn::selection {
            background: none;
        }

        .checkbox-wrapper-10 .tgl + .tgl-btn {
            outline: 0;
            display: block;
            width: 4em;
            height: 2em;
            position: relative;
            cursor: pointer;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

            .checkbox-wrapper-10 .tgl + .tgl-btn:after,
            .checkbox-wrapper-10 .tgl + .tgl-btn:before {
                position: relative;
                display: block;
                content: "";
                width: 50%;
                height: 100%;
            }

            .checkbox-wrapper-10 .tgl + .tgl-btn:after {
                left: 0;
            }

            .checkbox-wrapper-10 .tgl + .tgl-btn:before {
                display: none;
            }

        .checkbox-wrapper-10 .tgl:checked + .tgl-btn:after {
            left: 50%;
        }

.checkbox-wrapper-10 .tgl-flip + .tgl-btn {
    padding: 2px;
    transition: all 0.2s ease;
    font-family: sans-serif;
    /*perspective: 100px;*/
}

    .checkbox-wrapper-10 .tgl-flip + .tgl-btn:after,
    .checkbox-wrapper-10 .tgl-flip + .tgl-btn:before {
        display: inline-block;
        transition: all 0.4s ease;
        width: 100%;
        text-align: center;
        position: absolute;
        line-height: 2em;
        font-weight: bold;
        color: #fff;
        position: absolute;
        top: 0;
        left: 0;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        border-radius: 4px;
    }

    .checkbox-wrapper-10 .tgl-flip + .tgl-btn:after {
        content: attr(data-tg-on);
        background: #02C66F;
        transform: rotateY(-180deg);
    }

    .checkbox-wrapper-10 .tgl-flip + .tgl-btn:before {
        background: /*#FF3A19*/ #d26a5c;
        content: attr(data-tg-off);
    }

    .checkbox-wrapper-10 .tgl-flip + .tgl-btn:active:before {
        transform: rotateY(-20deg);
    }

.checkbox-wrapper-10 .tgl-flip:checked + .tgl-btn:before {
    transform: rotateY(180deg);
}

.checkbox-wrapper-10 .tgl-flip:checked + .tgl-btn:after {
    transform: rotateY(0);
    left: 0;
    background: #7FC6A6;
}

.checkbox-wrapper-10 .tgl-flip:checked + .tgl-btn:active:after {
    transform: rotateY(20deg);
}

.radio-wrapper-1 {
    float: left;
    display: grid;
    margin: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Open Sans', sans-serif;
}

.rad-label {
    height: 10pt;
    display: flex;
    align-items: center;
    border-radius: 100px;
    padding: 14px 16px;
    margin: 10px 0;
    cursor: pointer;
    transition: .3s;
}

    .rad-label:hover,
    .rad-label:focus-within {
        background: hsla(0, 0%, 80%, .14);
    }

.rad-input {
    position: absolute;
    left: 0;
    width: 0.5pt;
    height: 0.5pt;
    opacity: 0;
    z-index: -1;
}

.rad-design {
    cursor: pointer;
    width: 10pt;
    height: 10pt;
    border-radius: 100px;
    background: linear-gradient(to right bottom, hsl(154, 97%, 62%), hsl(225, 97%, 62%));
    position: relative;
}

    .rad-design::before {
        content: '';
        display: inline-block;
        width: inherit;
        height: inherit;
        border-radius: inherit;
        background: hsl(0, 0%, 90%);
        transform: scale(1.1);
        transition: .3s;
    }

.rad-input:checked + .rad-design::before {
    transform: scale(0);
}

.rad-text {
    cursor: pointer;
    color: hsl(0, 0%, 60%);
    margin-left: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 8pt;
    font-weight: 900;
    transition: .3s;
}

.rad-input:checked ~ .rad-text {
    color: hsl(0, 0%, 40%);
}

.abs-site-link {
    position: fixed;
    bottom: 40px;
    left: 20px;
    color: hsla(0, 0%, 0%, .5);
    font-size: 16px;
}

.center-button {
    display: table;
    margin: 0pt auto;
    float: none;
    margin-top: 10pt;
}

.open {
}

#layoutAnaDiv {
    margin: 0 auto;
    padding: 13px 20px 1px;
    max-width: 100%;
    overflow-x: hidden;
}

.tdLeft {
    text-align: right;
    padding-right: 1pt;
    font-weight: 900;
    font-size: 10pt;
    width: 35%;
}

.asd {
    text-decoration-color: revert-layer;
}

.panelbar-1 {
    display: block;
    height: auto;
    overflow: visible;
    padding: 0 1em;
}

@media (max-width: 600px) {
    .dashboardMainDiv {
        padding-top: 70pt;
    }
}

.progress, .progress {
    width: 100%;
    margin: 1px 1px 1px 1px;
    display: block;
    font-weight: 900;
}

    .progress .k-state-selected {
        background-color: orange;
        border-color: orangered;
    }
.modal-xl {
    width: 1100px;
}
.common-label {
    font-size: 18px;
    text-align: center;
    text-decoration: underline;
}

.content1 {
    border: 2px solid #000;
    padding: 20px;
    background-color: #f0f0f0;
    color: #333;
    font-family: Arial, sans-serif;
}

.form-group2 {
    border: 2px solid #000; /* Çerçeve eklemek için */
    padding: 15px; /* İçerideki boşluğu ayarlamak için */
    border-radius: 5px; /* Köşeleri yuvarlamak için */
    margin-bottom: 20px; /* Alt kenar boşluğunu ayarlamak için */
}

    .form-group2 label {
        font-weight: bold; /* Yazı tipini kalın yapmak için */
    }

    .form-group2 input[type="radio"] + label {
        font-weight: bold; /* Radyo butonlarının etiketlerini kalın yapmak için */
    }

.question-container {
    margin: 0pt;
    margin-top: 2pt;
    margin-bottom: 5pt;
    height: max-content;
    display: flow-root;
    border-bottom: 1pt solid #000;
}

.question-label {
    width: 100%;
    text-align: left;
    font-size: 13pt;
}

.answer-label {
    margin: 5pt 5pt;
    font-size: 10pt;
}

.radio-custom {
    margin: 5pt 10pt;
    font-size: 10pt;
}

#cevaplarDiv {
    background-color: gainsboro; /* Daha açık bir arka plan rengi */
    padding: 15px; /* Dolgu miktarını biraz azalttık */
    border: 1px solid #ddd; /* İnce ve açık renkli kenarlık */
    border-radius: 3px; /* Daha az yuvarlak kenarlık */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Hafif gölge efekti */
    font-size: 14px; /* Daha küçük yazı tipi boyutu */
    line-height: 1.5; /* Metin satırları arasındaki boşluk */
    max-width: 757px; /* Maksimum genişlik belirledik */
    margin: 0 auto 0 200px; /* Sağa hizalamak için margin ekledik */
    text-align: justify; /* Metni hizala */
}

.bg-color-1 {
    background-color: rgba(255, 0, 0, 0.2);
}
/* Soft transparan kırmızı */
.bg-color-2 {
    background-color: rgba(255, 69, 0, 0.2);
}
/* Soft transparan koyu turuncu */
.bg-color-3 {
    background-color: rgba(255, 140, 0, 0.2);
}
/* Soft transparan turuncu */
.bg-color-4 {
    background-color: rgba(255, 165, 0, 0.2);
}
/* Soft transparan açık turuncu */
.bg-color-5 {
    background-color: rgba(255, 215, 0, 0.2);
}
/* Soft transparan altın sarısı */
.bg-color-6 {
    background-color: rgba(255, 255, 0, 0.2);
}
/* Soft transparan sarı */
.bg-color-7 {
    background-color: rgba(173, 255, 47, 0.2);
}
/* Soft transparan yeşilimsi sarı */
.bg-color-8 {
    background-color: rgba(124, 252, 0, 0.2);
}
/* Soft transparan çimen yeşili */
.bg-color-9 {
    background-color: rgba(0, 255, 0, 0.2);
}
/* Soft transparan yeşil */
.bg-color-10 {
    background-color: rgba(0, 255, 127, 0.2);
}
/* Soft transparan yayla yeşili */
.bg-color-11 {
    background-color: rgba(0, 255, 255, 0.2);
}
/* Soft transparan aqua */
.bg-color-12 {
    background-color: rgba(0, 191, 255, 0.2);
}
/* Soft transparan derin gökyüzü mavisi */
.bg-color-13 {
    background-color: rgba(0, 0, 255, 0.2);
}
/* Soft transparan mavi */
.bg-color-14 {
    background-color: rgba(75, 0, 130, 0.2);
}
/* Soft transparan çivit mavisi */
.bg-color-15 {
    background-color: rgba(238, 130, 238, 0.2);
}
/* Soft transparan mor */
.bg-color-16 {
    background-color: rgba(255, 20, 147, 0.2);
}
/* Soft transparan derin pembe */
.bg-color-17 {
    background-color: rgba(255, 105, 180, 0.2);
}
/* Soft transparan sıcak pembe */
.bg-color-18 {
    background-color: rgba(255, 182, 193, 0.2);
}
/* Soft transparan açık pembe */
.bg-color-19 {
    background-color: rgba(210, 105, 30, 0.2);
}
/* Soft transparan çikolata */
.bg-color-20 {
    background-color: rgba(128, 128, 128, 0.2);
}

.label-dark {
    background-color: rgba(221, 160, 221, 0.8);
    border-radius: 15px;
}
/* Soft transparan gri */

.modern-dashboard {
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    background: #fff;
}

    .modern-dashboard:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    }

.k-tilelayout-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    border-bottom: 1px solid #ddd;
    border-radius: 20px;
}

.k-card-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.contextMenuButton {
    color: #656565;
}

.k-tilelayout-item-body {
    border-radius: 15px; /* Köşeleri yuvarlatma */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Hafif gölge efekti */
    background-color: #fff; /* Arka plan rengi */
}

.dashboard-text {
    font-size: 16pt;
    font-weight: 300;
    color: #333;
    margin: 10px 0;
}

.dashboard-value {
    font-size: 60pt;
    line-height: 101px;
    font-weight: 600;
    color: #F31700;
    float: right;
    margin-top: 1%;
    margin-bottom: 0;
    padding: 10px;
}

.template-footer {
    margin-top: 20px;
    color: #777;
    font-size: 14px;
}

.dashboard-links {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.dashboard-link {
    padding: 10px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

    .dashboard-link.link1 {
        background-color: #007bff;
        color: #fff;
    }

        .dashboard-link.link1:hover {
            background-color: #0056b3;
        }

    .dashboard-link.link2 {
        background-color: #28a745;
        color: #fff;
    }

        .dashboard-link.link2:hover {
            background-color: #1e7e34;
        }

    .dashboard-link.link3 {
        background-color: #dc3545;
        color: #fff;
    }

        .dashboard-link.link3:hover {
            background-color: #c82333;
        }

/* Kırmızıdan yeşile soft ve transparan renkler */
.link-color-1 {
    color: rgba(255, 0, 0, 0.8);
}
/* Kırmızı */
.link-color-2 {
    color: rgba(255, 51, 0, 0.8);
}

.link-color-3 {
    color: rgba(255, 102, 0, 0.8);
}

.link-color-4 {
    color: rgba(255, 153, 0, 0.8);
}

.link-color-5 {
    color: rgba(255, 204, 0, 0.8);
}

.link-color-6 {
    color: rgba(255, 255, 0, 0.8);
}

.link-color-7 {
    color: rgba(204, 255, 0, 0.8);
}

.link-color-8 {
    color: rgba(153, 255, 0, 0.8);
}

.link-color-9 {
    color: rgba(102, 255, 0, 0.8);
}

.link-color-10 {
    color: rgba(51, 255, 0, 0.8);
}

.link-color-11 {
    color: rgba(0, 255, 0, 0.8);
}
/* Yeşil */
.link-color-12 {
    color: rgba(0, 255, 51, 0.8);
}

.link-color-13 {
    color: rgba(0, 255, 102, 0.8);
}

.link-color-14 {
    color: rgba(0, 255, 153, 0.8);
}

.link-color-15 {
    color: rgba(0, 255, 204, 0.8);
}

.link-color-16 {
    color: rgba(0, 255, 255, 0.8);
}

.link-color-17 {
    color: rgba(0, 204, 255, 0.8);
}

.link-color-18 {
    color: rgba(0, 153, 255, 0.8);
}

.link-color-19 {
    color: rgba(0, 102, 255, 0.8);
}

.link-color-20 {
    color: rgba(0, 51, 255, 0.8);
}
/* Mavi-yeşil */

.dashboard-link {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s, color 0.3s;
}

    .dashboard-link:hover {
        background-color: rgba(0, 0, 0, 0.1);
        color: rgba(0, 0, 0, 0.8);
    }

/*.col-md-6 {
    position: relative;
    padding: 15px;
}

    .col-md-6:not(:last-child) {
        border-right: 2px solid rgba(0, 0, 0, 0.2);*/ /* Çizgi rengi ve kalınlığı */
    /*}

    .col-md-6:hover {
        background-color: rgba(0, 0, 0, 0.05);*/ /* Hover efekti */
    /*}*/

.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}




.btn-style-1 {
    background-color: #e0f7fa;
    color: #00796b;
}

    .btn-style-1:hover {
        background-color: #b2dfdb;
        color: #004d40;
        box-shadow: 0 4px 8px rgba(0, 121, 107, 0.3);
    }

.btn-style-2 {
    background-color: #f8bbd0;
    color: #c2185b;
}

    .btn-style-2:hover {
        background-color: #f48fb1;
        color: #880e4f;
        box-shadow: 0 4px 10px rgba(194, 24, 91, 0.3);
    }

.btn-style-3 {
    background-color: #18b644b3;
    color: #fff;
    border: outset;
    border-radius: 5px 10px;
}

    .btn-style-3:hover {
        background-color: #fff;
        color: #2fb83bbf;
        box-shadow: 0 4px 5px rgb(249, 45, 10, 0,30);
    }

.btn-style-4 {
    background-color: #d1c4e9;
    color: #673ab7;
}

    .btn-style-4:hover {
        background-color: #b39ddb;
        color: #4527a0;
        box-shadow: 0 4px 8px rgba(103, 58, 183, 0.3);
    }

.btn-style-5 {
    background-color: #c8e6c9;
    color: #388e3c;
}

    .btn-style-5:hover {
        background-color: #a5d6a7;
        color: #1b5e20;
        box-shadow: 0 4px 8px rgba(56, 142, 60, 0.3);
    }

.btn-style-6 {
    background-color: #ffccbc;
    color: #e64a19;
}

    .btn-style-6:hover {
        background-color: #ffab91;
        color: #fff;
        box-shadow: 0 4px 8px rgba(230, 74, 25, 0.3);
    }

.btn-style-7 {
    background-color: #fff;
    color: #0060ff;
    border: outset;
}

    .btn-style-7:hover {
        background-color: #2266cbd9;
        color: #fff;
        box-shadow: 0 4px 8px rgba(25, 118, 210, 0.3);
    }

.btn-style-8 {
    background-color: #d7ccc8;
    color: #5d4037;
    border: outset;
}

    .btn-style-8:hover {
        background-color: #bcaaa4;
        color: #3e2723;
        box-shadow: 0 4px 8px rgba(93, 64, 55, 0.3);
    }

.btn-style-9 {
    background-color: #ffe0b2;
    color: #f57c00;
    border: outset;
}

    .btn-style-9:hover {
        background-color: #ffcc80;
        color: #e65100;
        box-shadow: 0 4px 8px rgba(245, 124, 0, 0.3);
    }

.btn-style-10 {
    background-color: #cfd8dc;
    color: #607d8b;
}

    .btn-style-10:hover {
        background-color: #b0bec5;
        color: #37474f;
        box-shadow: 0 4px 8px rgba(96, 125, 139, 0.3);
    }

.nav1 {
    font-family: "Tahoma", sans-serif;
    text-transform: capitalize;
    text-decoration: blink;
    display: block;
    border-radius: 20px 13px;
    border: outset;
    border-color: azure;
    height: 45px;
    width: 45px;
    margin: 1px 0px 0px 1px;
    overflow: hidden;
    float: left;
    text-align: center;
    background: #007bff;
    color: #ffffff;
    transition: all .8s ease, box-shadow 2s;
    -webkit-transition: all .8s ease,box-shadow 2s;
    cursor: pointer;
}

    .nav1:hover {
        color: #fff;
        border-right: 3px solid#fbfbfbf2;
        -webkit-box-shadow: inset 0px -200px 0px 0px rgba(42,147,208,1);
        -moz-box-shadow: inset 0px -200px 0px 0px rgba(42,147,208,1);
        box-shadow: inset 0px -200px 0px 0px rgba(42,147,208,1);
        -webkit-backface-visibility: visible;
        -webkit-transform-origin: 80% 80%;
        -webkit-transform: perspective(500px) rotateX(-30deg) scaleX(0.9) scaleY(1.0);
    }

        .nav1:hover .icon:first-child {
            margin-bottom: -50px;
            padding-left: 60px;
        }


.nav2 {
    font-family: "Tahoma", sans-serif;
    text-transform: capitalize;
    text-decoration: blink;
    display: block;
    border-radius: 20px 13px;
    border: outset;
    border-color: azure;
    height: 45px;
    width: 45px;
    margin: 1px 0px 0px 1px;
    overflow: hidden;
    float: left;
    text-align: center;
    background: #f5c63fee;
    color: #e50d0d;
    transition: all .8s ease, box-shadow 2s;
    -webkit-transition: all .8s ease,box-shadow 2s;
    cursor: pointer;
}

    .nav2:hover {
        color: #fff;
        border-right: 3px solid#fbfbfbf2;
        -webkit-box-shadow: inset 0px -200px 0px 0px rgb(116, 128, 134);
        -moz-box-shadow: inset 0px -200px 0px 0px rgb(111, 132, 145);
        box-shadow: inset 0px -200px 0px 0px rgb(193, 195, 197);
        -webkit-backface-visibility: visible;
        -webkit-transform-origin: 80% 80%;
        -webkit-transform: perspective(500px) rotateX(-30deg) scaleX(0.9) scaleY(1.0);
    }

        .nav2:hover .icon:first-child {
            margin-bottom: -50px;
            padding-left: 60px;
        }

.nav3 {
    font-family: "Tahoma", sans-serif;
    text-transform: capitalize;
    text-decoration: blink;
    display: block;
    border-radius: 20px 13px;
    border: outset;
    border-color: azure;
    height: 45px;
    width: 45px;
    margin: 1px 0px 0px 1px;
    overflow: hidden;
    float: left;
    text-align: center;
    background: #b4dbc2e1;
    color: #0a7a2e;
    transition: all .8s ease, box-shadow 2s;
    -webkit-transition: all .8s ease,box-shadow 2s;
    cursor: pointer;
}

    .nav3:hover {
        color: #fff;
        border-right: 3px solid#fbfbfbf2;
        -webkit-box-shadow: inset 0px -200px 0px 0px rgb(82, 196, 111);
        -moz-box-shadow: inset 0px -200px 0px 0px rgb(129, 210, 199);
        box-shadow: inset 0px -200px 0px 0px rgb(193, 195, 197);
        -webkit-backface-visibility: visible;
        -webkit-transform-origin: 80% 80%;
        -webkit-transform: perspective(500px) rotateX(-30deg) scaleX(0.9) scaleY(1.0);
    }

        .nav3:hover .icon:first-child {
            margin-bottom: -50px;
            padding-left: 60px;
        }

.k-loading-mask .k-loading-image {
    background-image: url('../Content/tools/otomasyon-loading/loader-flight-new.gif');
    opacity: 0.71
}

.styled-text {
    font-family: 'Times New Roman', Times, serif;
    font-size: 10px;
    font-weight: bold;
    color: #1cb1e5; /* A pleasing blue color */
    padding-left: 35px; /* Space between checkbox and text */
    display: list-item;
    align-content: flex-end;
    transition: color 0.3s ease, text-shadow 0.3s ease; /* Smooth transition effects */
}

    /* Hover effect */
    .styled-text:hover {
        color: #ee5656; /* Darker blue on hover */
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    }

.switch-holder {
    display: flex;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: -8px -8px 15px rgba(255, 255, 255, .7), 10px 10px 10px rgba(0, 0, 0, .2), inset 8px 8px 15px rgba(255, 255, 255, .7), inset 10px 10px 10px rgba(0, 0, 0, .2);
    justify-content: space-between;
    align-items: center;
}

.switch-label {
    padding: 0 20px 0 10px
}

    .switch-label i {
        margin-right: 5px;
    }

.switch-toggle {
    height: 30px;
}

    .switch-toggle input[type="checkbox"] {
        position: absolute;
        opacity: 0;
        z-index: -2;
    }

        .switch-toggle input[type="checkbox"] + label {
            position: relative;
            display: inline-block;
            width: 100px;
            height: 40px;
            border-radius: 20px;
            margin: 0;
            cursor: pointer;
            box-shadow: inset -8px -8px 15px rgba(255, 255, 255, .6), inset 10px 10px 10px rgba(0, 0, 0, .25);
        }

            .switch-toggle input[type="checkbox"] + label::before {
                position: absolute;
                content: 'OFF';
                font-size: 13px;
                text-align: center;
                line-height: 25px;
                top: 8px;
                left: 8px;
                width: 45px;
                height: 25px;
                border-radius: 20px;
                background-color: #eeeeee;
                box-shadow: -3px -3px 5px rgba(255, 255, 255, .5), 3px 3px 5px rgba(0, 0, 0, .25);
                transition: .3s ease-in-out;
            }

        .switch-toggle input[type="checkbox"]:checked + label::before {
            left: 50%;
            content: 'ON';
            color: #fff;
            background-color: #00b33c;
            box-shadow: -3px -3px 5px rgba(255, 255, 255, .5), 3px 3px 5px #00b33c;
        }

.modern-button-shbys {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 3%;
    height: 3%;
    color: #fff;
    background-color: #004085; /* Elektronik imza için koyu mavi */
    padding: 12px 25px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0, 64, 133, 0.3);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

    .modern-button-shbys i {
        margin-right: 10px;
        font-size: 22px;
        width: 3%;
        height: 3%;
    }

    .modern-button-shbys:hover {
        background-color: #003366; /* Hover'da daha koyu */
        box-shadow: 0 10px 25px rgba(0, 64, 133, 0.5);
        transform: translateY(-2px);
        border: 2px solid #004085;
    }

    .modern-button-shbys:active {
        background-color: #002752;
        box-shadow: 0 4px 12px rgba(0, 64, 133, 0.3);
        transform: translateY(1px);
    }

    .modern-button-shbys:focus {
        outline: none;
        box-shadow: 0 0 0 4px rgba(0, 64, 133, 0.4);
    }



.dark-red-row {
    background-color: rosybrown;
    color: black;
}

.red-row {
    background-color: rgba(255, 0, 0, 0.1); /* Kırmızı */
}

.orange-red-row {
    background-color: rgba(255, 69, 0, 0.1); /* Turuncu-kırmızı */
}
.darkside-black-row {
    background-color: rgb(79, 79, 79);
    color: white;
}

.orange-row {
    background-color: rgba(255, 165, 0, 0.1); /* Turuncu */
}

.yellow-orange-row {
    background-color: rgba(255, 200, 0, 0.1); /* Sarı-turuncu */
}

.yellow-row {
    background-color: rgba(255, 255, 0, 0.1); /* Sarı */
}

.yellow-green-row {
    background-color: rgba(173, 255, 47, 0.1); /* Sarı-yeşil */
}

.light-green-row {
    background-color: rgba(144, 238, 144, 0.1); /* Açık yeşil */
}

.green-row {
    background-color: #00b33c4d; /* Yeşil */
}

.medium-green-row {
    background-color: rgba(0, 205, 0, 0.1); /* Orta yeşil */
}

.dark-green-row {
    background-color: rgba(0, 128, 0, 0.1); /* Koyu yeşil */
}

.light-blue-row {
    background-color: rgba(173, 216, 230, 0.1); /* Açık mavi */
}

.blue-row {
    background-color: #eea1346f; /* Mavi */
}
.gray-row {
    background-color: rgb(215, 199, 199, 0,60); /* Mavi */
}

.btn-imza {
    cursor: pointer;
    border: solid rgb(204, 0, 0);
    font-family: "system-ui";
    font-size: 25px;
    color: rgb(255, 255, 255);
    padding: 10px 30px;
    transition: 520ms;
    width: 335px;
    box-shadow: rgb(0, 0, 0) 0px 0px 0px 0px;
    border-radius: 15px;
    background: linear-gradient(134deg, rgb(130, 200, 252) 61%, rgb(78, 7, 39) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    --hover-borderc: #0085eb;
    --hover-borderSize: 1px;
    --hover-width: 30px;
    --hover-color: #82c8fc;
    --hover-bgc: #4e0727;
    font-weight: 661;
}

    .btn-imza:hover {
        color: rgb(130, 200, 252);
        width: 30px;
        background: rgb(78, 7, 39) none repeat scroll 0% 0% / auto padding-box border-box;
        border-color: rgb(0, 133, 235);
        border-width: 0.8px;
        border-style: solid;
    }

.modern-button-shbys-imza {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    background-color: #0056b3; /* Kurumsal koyu mavi */
    padding: 12px 25px;
    border-radius: 15px;
    font-size: 16px;
    width: 3%;
    height: 3%;
    font-weight: 600; /* Daha güçlü bir yazı stili */
    box-shadow: 0 6px 18px rgba(0, 85, 170, 0.3); /* Yumuşak kurumsal gölge */
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

    .modern-button-shbys-imza i {
        margin-right: 10px;
        font-size: 22px;
    }

    .modern-button-shbys-imza:hover {
        background-color: #007bff; /* Hover için canlı mavi tonu */
        box-shadow: 0 10px 25px rgba(0, 85, 170, 0.5); /* Hoverda gölgeyi artır */
        transform: translateY(-2px); /* Hafif yukarı animasyonu */
        border: 2px solid #0056b3; /* Kurumsal vurgulayıcı çerçeve */
    }

    .modern-button-shbys-imza:active {
        background-color: #003d80; /* Basıldığında koyu mavi */
        box-shadow: 0 4px 12px rgba(0, 85, 170, 0.3);
        transform: translateY(1px); /* Tıklayınca küçük bir kayma */
    }

    .modern-button-shbys-imza:focus {
        outline: none; /* Odaklanmada çirkin çizgiyi kaldır */
        box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.4); /* Fokus efektinde çerçeve */
    }

.button-approval {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    background-color: #28a745; /* Onay işlemi için yeşil */
    padding: 12px 25px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 600;
    width: 3%;
    height: 3%;
    box-shadow: 0 6px 18px rgba(40, 167, 69, 0.3);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

    .button-approval i {
        margin-right: 10px;
        font-size: 22px;
    }

    .button-approval:hover {
        background-color: #218838; /* Hover'da daha koyu yeşil */
        box-shadow: 0 10px 25px rgba(40, 167, 69, 0.5);
        transform: translateY(-2px);
        border: 2px solid #28a745;
    }

    .button-approval:active {
        background-color: #1e7e34;
        box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
        transform: translateY(1px);
    }

    .button-approval:focus {
        outline: none;
        box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.4);
    }

.button-info-dash {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    background-color: #17a2b8; /* Bilgi için mavi */
    padding: 12px 25px;
    width: 3%;
    height: 3%;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(23, 162, 184, 0.3);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

    .button-info-dash i {
        margin-right: 10px;
        font-size: 22px;
    }

    .button-info-dash:hover {
        background-color: #138496; /* Hover'da daha koyu mavi */
        box-shadow: 0 10px 25px rgba(23, 162, 184, 0.5);
        transform: translateY(-2px);
        border: 2px solid #17a2b8;
    }

    .button-info-dash:active {
        background-color: #117a8b;
        box-shadow: 0 4px 12px rgba(23, 162, 184, 0.3);
        transform: translateY(1px);
    }

    .button-info-dash:focus {
        outline: none;
        box-shadow: 0 0 0 4px rgba(23, 162, 184, 0.4);
    }

.highlight-dash {
    font-size: 18px; /* Büyük ama daha dengeli boyut */
    font-weight: 600; /* Kalın ama daha şık bir yazı tipi */
    color: #3d72aa; /* Kırmızının daha modern ve yumuşak bir tonu */
    text-transform: uppercase; /* Büyük harfler */
    letter-spacing: 1.2px; /* Harf aralarını açarak modern bir görünüm */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* Hafif gölge efekti ile 3D hissi */
    padding-bottom: 5px; /* Alt çizgi ile metin arasında boşluk */
    transition: all 0.3s ease; /* Geçiş efektleri ile daha yumuşak bir deneyim */
}

@keyframes blink {
    0% {
        background-color: rgba(255, 0, 0, 0.5);
    }
    /* Başlangıç rengi (örneğin kırmızı ton) */
    50% {
        background-color: rgba(255, 0, 0, 0);
    }
    /* Yarıda şeffaf */
    100% {
        background-color: rgba(255, 0, 0, 0.5);
    }
    /* Tekrar kırmızı ton */
}

.blink-row {
    animation: blink 1s infinite; /* 1 saniyelik sürekli döngü */
}

.not-blink-row {
    /*animation: blink 1s infinite;*/ /* 1 saniyelik sürekli döngü */
}

/* Dikey tab için modern görünüm */
.modern-nav-pills .nav-link {
    border-radius: 0;
    background-color: #f0f0f0;
    color: #333;
    font-weight: 500;
    padding: 10px 15px;
    margin-bottom: 5px;
    transition: all 0.3s;
}

    .modern-nav-pills .nav-link.active {
        background-color: #007bff;
        color: white;
        box-shadow: 0 0 15px rgba(0, 123, 255, 0.4);
    }

    .modern-nav-pills .nav-link:hover {
        background-color: #007bff;
        color: white;
    }

.modern-tab-content {
    background-color: white;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 0 5px 5px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.group-separator {
    border-top: 2px solid #ccc;
    margin: 20px 0;
}

.animated-icon {
    display: inline-block;
    font-size: 1.2rem;
    animation: pulse 0.85s ease-in;
    border-radius: 20px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        color: black;
    }

    50% {
        transform: scale(1.3);
        color: dimgray;
    }

    30% {
        transform: scale(1.2);
        color: gray;
    }

    10% {
        transform: scale(1.1);
        color: dodgerblue;
    }
}

.modern-text-dash {
    font-family: 'Poppins', sans-serif; /* Modern bir yazı tipi */
    font-size: 1.3rem; /* Yazı boyutunu ayarla */
    font-weight: 700; /* Orta kalınlık */
    color: #333; /* Şık bir koyu gri */
    background: linear-gradient(90deg, #f7f7f7, #eaeaea); /* Hafif degrade arka plan */
    padding: 10px 15px; /* İç boşluk */
    border-radius: 15px; /* Yuvarlak köşeler */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Hafif gölge efekti */
    text-align: center; /* Metni ortala */
    display: inline-block; /* İsteğe bağlı, metni blok haline getirir */
    border-style: double;
}

.new-badge {
    background-color: #ff4081; /* Modern pembe ton */
    color: white;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 2px 3px;
    border-radius: 12px;
    margin-left: 8px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}


/* Modern link tasarımı */
.modern-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #c3cfdc; /* Modern mavi ton */
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease;
}

    .modern-link:hover {
        color: #0056b3; /* Daha koyu ton */
    }

/* Yeni etiketi */
.modern-badge {
    background: linear-gradient(135deg, #ff6a88, #ff99ac); /* Modern gradient */
    color: white;
    font-size: 8px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 2px 2px;
    border-radius: 10px;
    margin-left: 1px;
    animation: bounce 2s infinite;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* Animasyon: Hafif zıplama */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px); /* Daha belirgin bir zıplama */
    }
}

/* Modern link hover efekti */
.modern-link:hover .modern-badge {
    transform: scale(1.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 106, 136, 0.9), 0 0 25px rgba(255, 106, 136, 0.7); /* Daha yumuşak gölge */
}

/* Dropdown menü stil güncellemesi */
.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    background-color: #ffffff;
    animation: fadeIn 0.3s ease; /* Menü açılırken hafif bir fade-in efekti */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu li {
    padding: 10px 20px; /* Daha geniş padding */
    border-top: 1px solid #eee; /* Daha yumuşak kenarlık */
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease, color 0.3s ease;
    color: #333; /* Orijinal renk */
    font-size: 14px;
}

    .dropdown-menu li:hover {
        background-color: #9ab2ba33; /* Hafif pembe arka plan */
        color: #ff6a88; /* Orijinal renk */
    }

    .dropdown-menu li:first-child {
        border-top: none; /* İlk öğenin üst kenarlığını kaldır */
    }

    .dropdown-menu li:last-child {
        border-bottom: none; /* Son öğenin alt kenarlığını kaldır */
    }

/* Dropdown buton stil güncellemesi */
.btn-dropdown {
    height: 40px; /* Daha büyük buton */
    width: 40px;
    border-radius: 50%; /* Yuvarlak buton */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ff6a88; /* Orijinal renk */
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 106, 136, 0.3); /* Buton gölgesi */
}

    .btn-dropdown:hover {
        background-color: #5aa6f7; /* Daha koyu pembe */
        transform: scale(1.1); /* Hafif büyüme efekti */
    }

    .btn-dropdown:active {
        transform: scale(0.95); /* Tıklama efekti */
    }

/* Modern badge stil güncellemesi */


.modern-link {
    display: inline-block;
    transition: color 0.3s ease;
    color: #333; /* Orijinal renk */
    text-decoration: none;
}

    .modern-link:hover {
        color: #ff6a88; /* Orijinal renk */
    }

.menu-icon {
    font-size: 20px;
}

.animated-icon:hover {
    animation: bounce 0.5s;
}

.block-title-detay {
    font-size: 15px;
    font-weight: 600;
    margin-right: 600px;
    text-transform: uppercase;
    line-height: 1.2;
    border-radius: 40px; /* Hafif yuvarlak köşeler */
    /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);*/ /* Hafif gölge */
}

.block-title-detay-alt {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
}


.block-title-detay small {
    font-size: 13px;
    font-weight: normal;
    border-bottom: 2px solid #1950aa;
    text-transform: none;
}
/* Modern başlık stili - Mavi tonları */
.block-title {
    text-align: center;
    vertical-align: middle;
    font-size: 2.2rem; /* Daha büyük başlık */
    font-weight: 700;
    color: #2d3651; /* Derin mavi */
    margin-bottom: 2px; /* Alt boşluk */
    text-transform: uppercase; /* Büyük harf */
    letter-spacing: 1px;
    border-bottom: 2px inset; /* Parlak mavi alt çizgi */
    /* Parlak mavi alt çizgi */
    border-color: #5973c28c;
    padding-bottom: 10px;
    padding-top: 10px;
    background: linear-gradient(to top, #dfe9ef8c, #dcdee1d9); /* Açık mavi arka plan */
    border-bottom-left-radius: 20px; /* Hafif yuvarlak köşeler */
    border-bottom-right-radius: 20px; /* Hafif yuvarlak köşeler */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); /* Hafif gölge */
}

/* Buton kapsayıcı */
.block-options-simple {
    display: flex;
    justify-content: center;
    margin-top: 5px; /* Daha ferah yerleşim */
    gap: 20px; /* Butonlar arasında boşluk */
}

/* Modern buton tasarımı - Mavi tonları */
/*.block-options-simple .btn {
        font-size: 1.2rem;*/ /* Daha büyük yazı boyutu */
/*padding: 12px 35px;*/ /* Ferah iç boşluk */
/*background: linear-gradient(to right, #3b82f6, #60a5fa);*/ /* Mavi tonlarında geçiş */
/*border: none;*/ /* Kenarları kaldır */
/*border-radius: 30px;*/ /* Tam yuvarlak köşe */
/*color: white;
        transition: all 0.4s ease;*/ /* Daha yumuşak geçiş */
/*box-shadow: 0 6px 15px rgba(59, 130, 246, 0.4);*/ /* Mavi tonlu gölge */
/*display: flex;
        align-items: center;*/ /* Dikeyde hizalama */
/*gap: 12px;*/ /* İkon ve metin arasındaki boşluk */
/*text-transform: uppercase;*/ /* Büyük harf metin */
/*letter-spacing: 1.2px;
    }*/

/* Buton ikon */
/*.block-options-simple .btn i {
            font-size: 1.5rem;*/ /* İkon boyutunu artır */
/*transition: transform 0.3s ease;*/ /* Hover animasyonu */
/*}*/

/* Hover efekti */
/*.block-options-simple .btn:hover {
            background: linear-gradient(to right, #2563eb, #3b82f6);*/ /* Daha koyu mavi geçiş */
/*box-shadow: 0 8px 20px rgba(37, 99, 235, 0.6);*/ /* Daha belirgin gölge */
/*transform: translateY(-4px);*/ /* Hafif yukarı hareket */
/*}

            .block-options-simple .btn:hover i {
                transform: scale(1.2);*/ /* İkon büyütme efekti */
/*}*/

/* Tıklama efekti */
/*.block-options-simple .btn:active {
            background: #1d4ed8;*/ /* Daha koyu bir mavi */
/*box-shadow: 0 4px 10px rgba(29, 78, 216, 0.3);*/ /* Hafif gölge */
/*transform: translateY(0);*/ /* Eski pozisyona dönüş */
/*}*/

/* Buton dokunma animasyonu */
/*.block-options-simple .btn:focus {
            outline: none;*/ /* Kenar vurgusunu kaldır */
/*box-shadow: 0 0 10px #60a5fa, 0 0 20px rgba(59, 130, 246, 0.7);*/ /* Mavi ışık efekti */
/*}*/
.control-label-yeni {
    font-size: 16px; /* Daha büyük font boyutu */
    font-weight: 600; /* Yalnızca hafif vurgulama, daha zarif bir yazı */
    color: #4A4A4A; /* Yumuşak, modern bir gri ton */
    margin-bottom: 12px; /* Alt boşluk, öğeler arasında denge */
    margin-top: 8px; /* Üst boşluk */
    display: block; /* Etkili hizalama */
    line-height: 1.6; /* Daha rahat okunabilir metin */
    text-transform: capitalize; /* Her kelimenin ilk harfini büyük yaparak şıklık */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Modern ve kullanıcı dostu font ailesi */
    transition: all 0.3s ease-in-out; /* Yumuşak geçiş efekti */
    padding-left: 4px; /* Soldan hafif boşluk */
}

    /* Hover durumu */
    .control-label-yeni:hover {
        color: #1D4ED8; /* Hover sırasında daha belirgin mavi renk */
        transform: translateY(-2px); /* Hafif yukarı kaydırma */
    }

    /* Focus durumu */
    .control-label-yeni:focus-within {
        color: #2563eb; /* Focus sırasında mavi tonuyla dikkat çekici hale gelir */
        border-bottom: 2px solid #2563eb; /* Alt çizgi eklenir */
        padding-left: 6px; /* Sağlam vurgulama için padding eklenir */
    }

    /* Görünümde modernlik ve zariflik sağlamak için */
    .control-label-yeni:active {
        color: #1e3a8a; /* Aktif durumda daha koyu mavi */
        transform: translateY(0); /* Yukarı kaydırma etkisi kaldırılır */
    }

    /* Etkileşime girildiğinde alt çizgi eklenmesi */
    .control-label-yeni:focus {
        outline: none; /* Klasik focus outline'ını kaldırarak daha modern görünüm */
        box-shadow: 0 2px 8px rgba(38, 99, 227, 0.4); /* Hafif gölge eklenir */
    }

#btnYeniKayit {
    background-color: #12ae54; /* Yeşil tonunda canlı renk */
    color: white; /* Yazı rengini beyaz yaparak kontrastı artırdım */
    border: none; /* Kenar çizgisini kaldırdım */
    border-radius: 15px; /* Köşeleri yuvarlaklaştırdım */
    padding: 7px 9px; /* Yeterli iç boşluk */
    font-size: 13px; /* Okunaklı font boyutu */
    font-weight: 600; /* Yazı daha belirgin */
    transition: all 0.3s ease; /* Yumuşak geçiş efekti */
    cursor: pointer; /* İmleci pointer yaparak butona tıklanabilir olduğunu belirttim */
}

    /* Hover durumunda daha dikkat çekici hale getirmek */
    #btnYeniKayit:hover {
        background-color: #10B981; /* Hover sırasında daha koyu bir yeşil */
        transform: translateY(-2px); /* Hafif yukarı kaydırma efekti */
    }

    /* Active durumu */
    #btnYeniKayit:active {
        background-color: #065F46;
    }
/* btn btn-sm btn-primary butonu için modern ve zarif CSS */
.btn.btn-sm.btn-primary {
    background-color: #3b57f7; /* Modern, soğuk ve sofistike mavi tonları */
    color: white; /* Beyaz metin rengi */
    border: 1px solid #3f4e9d; /* İnce koyu mavi kenarlık */
    border-radius: 25px; /* Yuvarlak köşeler */
    padding: 5px 12px; /* Daha küçük iç boşluklar */
    font-size: 12px; /* Küçük ama okunabilir metin boyutu */
    font-weight: 600; /* Daha belirgin metin */
    cursor: pointer; /* Tıklanabilir buton */
    text-align: center; /* Metin ortalama */
    display: initial; /* İcon ve metin yan yana hizalanacak */
    align-items: center; /* Dikeyde ortalama */
    justify-content: center; /* Yatayda ortalama */
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease, opacity 0.2s ease; /* Geçiş efektleri */
    box-shadow: 0 4px 10px rgba(92, 107, 192, 0.3); /* Yumuşak gölge efekti */
    opacity: 0.9; /* Hafif opaklık */
}

    /* İcon ve metin arasına boşluk */
    .btn.btn-sm.btn-primary i {
        margin-right: 8px; /* İcon ile metin arasında boşluk */
    }

    /* Hover durumu */
    .btn.btn-sm.btn-primary:hover {
        background-color: #3f4e9d; /* Hover durumunda daha koyu mavi */
        transform: translateY(-2px); /* Hover efektiyle buton yukarı kayar */
        box-shadow: 0 6px 20px rgba(92, 107, 192, 0.4); /* Hover durumunda daha belirgin gölge */
        opacity: 1; /* Hover durumunda tam opaklık */
    }

    /* Active (Tıklama) durumu */
    .btn.btn-sm.btn-primary:active {
        background-color: #3c4777; /* Tıklama sırasında daha koyu mavi */
        transform: translateY(0); /* Tıklama sırasında kayma efekti yok */
        box-shadow: 0 4px 10px rgba(92, 107, 192, 0.2); /* Tıklama sırasında daha yumuşak gölge */
        opacity: 0.95; /* Tıklama anında hafif opaklık kaybı */
    }

    /* Focus durumu */
    .btn.btn-sm.btn-primary:focus {
        outline: none; /* Focus outline'ı kaldırma */
        box-shadow: 0 0 10px rgba(92, 107, 192, 0.6); /* Focus olduğunda mavi gölge efekti */
        opacity: 1; /* Focus olduğunda opaklık tam olur */
    }
/* Ultra-modern button style with icon and text */
.ultra-modern-btn {
    border-radius: 8px; /* Slightly rounded corners */
    padding: 6px 8px; /* Smaller padding for compact look */
    font-size: 12px; /* Reduced font size for a more compact button */
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border: 2px solid transparent; /* Border for a clean, outlined look */
    outline: none;
    cursor: pointer;
    min-width: 50px;
    background-color: transparent;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    height: 13px; /* Slightly smaller height */
}

    /* Icon styling */
    .ultra-modern-btn i {
        font-size: 2rem;
        transition: transform 0.3s ease;
    }

/* Button text styling */
.btn-text {
    font-size: 1.4rem;
    white-space: nowrap;
}

/* Hover effect for buttons with icon and text */
.ultra-modern-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-color: #ddd; /* Subtle border color change on hover */
}

/* Filter button styles */
.filter-btn {
    color: #007bff;
    border-color: #007bff; /* Matching border color */
}

    .filter-btn:hover {
        color: #0056b3;
        border-color: #0056b3; /* Matching border color on hover */
    }

/* Excel button styles */
.excel-btn {
    color: #28a745;
    border-color: #28a745; /* Matching border color */
}

    .excel-btn:hover {
        color: #218838;
        border-color: #218838; /* Matching border color on hover */
    }

/* PDF button styles */
.pdf-btn {
    color: #dc3545;
    border-color: #dc3545; /* Matching border color */
}

    .pdf-btn:hover {
        color: #c82333;
        border-color: #c82333; /* Matching border color on hover */
    }

/* Extra margin between buttons */
.pull-right {
    margin-left: 10px;
}

/* Subtle animation for icon when hovered */
.ultra-modern-btn:hover i {
    transform: scale(1.1);
}
/* Form Grubu Düzeni */
.dropdown-toggle-modern {
    background: #34495e;
    color: white;
    border-radius: 8px;
    padding: 3px 8px;
    font-size: 13px;
    font-weight: bold;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

    .dropdown-toggle-modern:hover {
        background: #2c3e50;
    }

.icon::before {
    content: '☰ ▼'; /* Hamburger simgesi ve yazı */
    width: 15px;
    height: 20px;
}

.icon {
    background: none !important;
    
}

@media (max-width: 768px) {
    .block-title {
        font-size: 1.8rem; /* Daha küçük başlık */
        padding-top: 8px;
        padding-bottom: 8px;
        border-bottom-left-radius: 15px; /* Daha küçük köşe */
        border-bottom-right-radius: 15px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4); /* Hafifletilmiş gölge */
    }

    .block-options-simple {
        flex-direction: column; /* Butonları alt alta diz */
        gap: 10px; /* Daha dar boşluk */
        margin-top: 10px;
    }

    #btnYeniKayit {
        font-size: 11px; /* Daha küçük font */
        padding: 5px 8px; /* Daha az iç boşluk */
        border-radius: 12px; /* Daha küçük köşe */
    }

    .btn.btn-sm.btn-primary {
        font-size: 11px; /* Daha küçük font boyutu */
        padding: 4px 10px; /* Daha küçük iç boşluk */
        border-radius: 20px; /* Daha küçük köşe */
        box-shadow: none; /* Gölgeyi kaldır */
        opacity: 1; /* Tam görünürlük */
    }

    .control-label-yeni {
        font-size: 14px; /* Daha küçük font boyutu */
        padding-left: 2px; /* Daha az soldan boşluk */
        line-height: 1.4; /* Daha sıkı satır yüksekliği */
        text-align: left; /* Sol hizalı */
    }

    .block-title-detay {
        font-size: 12px;
        font-weight: 600;
        margin-right: 20px;
        text-transform: uppercase;
        line-height: 1.2;
        border-radius: 40px; /* Hafif yuvarlak köşeler */
        /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);*/ /* Hafif gölge */
    }

    .block-title-detay-alt {
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        line-height: 1.2;
    }

    .modal-content {
        border: none;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        margin: auto;
    }
}

/* Tablet cihazlar için optimizasyon */
@media (min-width: 769px) and (max-width: 1024px) {
    .block-title {
        font-size: 2rem; /* Biraz küçültülmüş başlık */
        padding-top: 9px;
        padding-bottom: 9px;
        border-bottom-left-radius: 18px;
        border-bottom-right-radius: 18px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4); /* Daha az yoğun gölge */
    }

    .block-options-simple {
        gap: 15px; /* Butonlar arasında daha az boşluk */
    }

    #btnYeniKayit {
        font-size: 12px; /* Biraz daha küçük yazı */
        padding: 6px 10px;
        border-radius: 13px;
    }

    .btn.btn-sm.btn-primary {
        font-size: 12px; /* Küçük font boyutu */
        padding: 5px 11px;
        border-radius: 22px; /* Daha yuvarlak köşe */
        box-shadow: 0 3px 8px rgba(92, 107, 192, 0.2); /* Daha hafif gölge */
    }

    .control-label-yeni {
        font-size: 15px; /* Tablet için uygun yazı boyutu */
        padding-left: 3px;
        line-height: 1.5; /* Orta sıkılıkta satır yüksekliği */
    }

    .block-title-detay {
        font-size: 12px;
        font-weight: 600;
        margin-right: 20px;
        text-transform: uppercase;
        line-height: 1.2;
        border-radius: 40px; /* Hafif yuvarlak köşeler */
        /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);*/ /* Hafif gölge */
    }

    .block-title-detay-alt {
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        line-height: 1.2;
    }

    .modal-content {
        border: none;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        margin: auto;
    }
}
/* Kırmızı Ton */
.colored-icon-red {
    color: rgb(190, 37, 52) !important;
    font-size: 17px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .colored-icon-red:hover {
        color: rgb(255, 85, 100) !important;
        transform: scale(1.2);
    }

    .colored-icon-red:active {
        color: rgb(150, 20, 40) !important;
        transform: scale(1.1);
    }

/* Mavi Ton */
.colored-icon-blue {
    color: rgb(37, 90, 190) !important;
    font-size: 17px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .colored-icon-blue:hover {
        color: rgb(85, 150, 255) !important;
        transform: scale(1.2);
    }

    .colored-icon-blue:active {
        color: rgb(20, 60, 150) !important;
        transform: scale(1.1);
    }

/* Yeşil Ton */
.colored-icon-green {
    color: rgb(37, 190, 90) !important;
    font-size: 17px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .colored-icon-green:hover {
        color: rgb(85, 255, 150) !important;
        transform: scale(1.2);
    }

    .colored-icon-green:active {
        color: rgb(20, 150, 60) !important;
        transform: scale(1.1);
    }

/* Sarı Ton */
.colored-icon-yellow {
    color: rgb(190, 180, 37) !important;
    font-size: 17px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .colored-icon-yellow:hover {
        color: rgb(255, 230, 85) !important;
        transform: scale(1.2);
    }

    .colored-icon-yellow:active {
        color: rgb(150, 130, 20) !important;
        transform: scale(1.1);
    }

/* Mor Ton */
.colored-icon-purple {
    color: rgb(140, 37, 190) !important;
    font-size: 17px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .colored-icon-purple:hover {
        color: rgb(200, 85, 255) !important;
        transform: scale(1.2);
    }

    .colored-icon-purple:active {
        color: rgb(100, 20, 150) !important;
        transform: scale(1.1);
    }

/* Turuncu Ton */
.colored-icon-orange {
    color: rgb(190, 100, 37) !important;
    font-size: 17px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .colored-icon-orange:hover {
        color: rgb(255, 150, 85) !important;
        transform: scale(1.2);
    }

    .colored-icon-orange:active {
        color: rgb(150, 60, 20) !important;
        transform: scale(1.1);
    }

/* Pembe Ton */
.colored-icon-pink {
    color: rgb(190, 37, 120) !important;
    font-size: 17px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .colored-icon-pink:hover {
        color: rgb(255, 85, 180) !important;
        transform: scale(1.2);
    }

    .colored-icon-pink:active {
        color: rgb(150, 20, 90) !important;
        transform: scale(1.1);
    }

/* Turkuaz Ton */
.colored-icon-turquoise {
    color: rgb(37, 190, 170) !important;
    font-size: 17px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .colored-icon-turquoise:hover {
        color: rgb(85, 255, 220) !important;
        transform: scale(1.2);
    }

    .colored-icon-turquoise:active {
        color: rgb(20, 150, 130) !important;
        transform: scale(1.1);
    }

/* Gri Ton */
.colored-icon-gray {
    color: rgb(100, 100, 100) !important;
    font-size: 14px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .colored-icon-gray:hover {
        color: rgb(160, 160, 160) !important;
        transform: scale(1.2);
    }

    .colored-icon-gray:active {
        color: rgb(70, 70, 70) !important;
        transform: scale(1.1);
    }
.colored-icon-white {
    color: rgb(255, 255, 255) !important;
    font-size: 14px !important;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .colored-icon-white:hover {
        color: rgb(246, 165, 165) !important;
        transform: scale(1.2);
    }

    .colored-icon-white:active {
        color: rgb(125, 115, 115) !important;
        transform: scale(1.1);
    }

/* Siyah Ton */
.colored-icon-black {
    color: rgb(0, 0, 0) !important;
    font-size: 17px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .colored-icon-black:hover {
        color: rgb(50, 50, 50) !important;
        transform: scale(1.2);
    }

    .colored-icon-black:active {
        color: rgb(20, 20, 20) !important;
        transform: scale(1.1);
    }
/* Indigo Tone */
.colored-icon-indigo {
    color: rgb(75, 0, 130) !important;
    font-size: 17px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .colored-icon-indigo:hover {
        color: rgb(100, 50, 180) !important;
        transform: scale(1.2);
    }

    .colored-icon-indigo:active {
        color: rgb(50, 0, 100) !important;
        transform: scale(1.1);
    }

/* Lime Tone */
.colored-icon-lime {
    color: rgb(120, 190, 37) !important;
    font-size: 17px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .colored-icon-lime:hover {
        color: rgb(180, 255, 85) !important;
        transform: scale(1.2);
    }

    .colored-icon-lime:active {
        color: rgb(90, 150, 20) !important;
        transform: scale(1.1);
    }

/* Cyan Tone */
.colored-icon-cyan {
    color: rgb(37, 190, 200) !important;
    font-size: 17px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .colored-icon-cyan:hover {
        color: rgb(85, 255, 250) !important;
        transform: scale(1.2);
    }

    .colored-icon-cyan:active {
        color: rgb(20, 150, 160) !important;
        transform: scale(1.1);
    }

/* Brown Tone */
.colored-icon-brown {
    color: rgb(150, 75, 37) !important;
    font-size: 17px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .colored-icon-brown:hover {
        color: rgb(200, 130, 85) !important;
        transform: scale(1.2);
    }

    .colored-icon-brown:active {
        color: rgb(120, 50, 20) !important;
        transform: scale(1.1);
    }

/* Teal Tone */
.colored-icon-teal {
    color: rgb(37, 150, 130) !important;
    font-size: 17px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .colored-icon-teal:hover {
        color: rgb(85, 200, 170) !important;
        transform: scale(1.2);
    }

    .colored-icon-teal:active {
        color: rgb(20, 100, 90) !important;
        transform: scale(1.1);
    }

/* Coral Tone */
.colored-icon-coral {
    color: rgb(255, 127, 80) !important;
    font-size: 17px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .colored-icon-coral:hover {
        color: rgb(255, 160, 120) !important;
        transform: scale(1.2);
    }

    .colored-icon-coral:active {
        color: rgb(200, 90, 50) !important;
        transform: scale(1.1);
    }

/* Mint Tone */
.colored-icon-mint {
    color: rgb(170, 255, 195) !important;
    font-size: 17px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .colored-icon-mint:hover {
        color: rgb(200, 255, 220) !important;
        transform: scale(1.2);
    }

    .colored-icon-mint:active {
        color: rgb(140, 200, 160) !important;
        transform: scale(1.1);
    }

/* Navy Tone */
.colored-icon-navy {
    color: rgb(0, 0, 128) !important;
    font-size: 17px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .colored-icon-navy:hover {
        color: rgb(50, 50, 180) !important;
        transform: scale(1.2);
    }

    .colored-icon-navy:active {
        color: rgb(20, 20, 100) !important;
        transform: scale(1.1);
    }

/* Peach Tone */
.colored-icon-peach {
    color: rgb(255, 218, 185) !important;
    font-size: 17px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .colored-icon-peach:hover {
        color: rgb(255, 230, 200) !important;
        transform: scale(1.2);
    }

    .colored-icon-peach:active {
        color: rgb(200, 180, 150) !important;
        transform: scale(1.1);
    }

/* Gold Tone */
.colored-icon-gold {
    color: rgb(255, 215, 0) !important;
    font-size: 17px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .colored-icon-gold:hover {
        color: rgb(255, 230, 50) !important;
        transform: scale(1.2);
    }

    .colored-icon-gold:active {
        color: rgb(200, 170, 0) !important;
        transform: scale(1.1);
    }

/* Salmon Tone */
.colored-icon-salmon {
    color: rgb(250, 128, 114) !important;
    font-size: 17px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .colored-icon-salmon:hover {
        color: rgb(255, 160, 140) !important;
        transform: scale(1.2);
    }

    .colored-icon-salmon:active {
        color: rgb(200, 90, 80) !important;
        transform: scale(1.1);
    }

/* Magenta Tone */
.colored-icon-magenta {
    color: rgb(255, 0, 255) !important;
    font-size: 17px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .colored-icon-magenta:hover {
        color: rgb(255, 100, 255) !important;
        transform: scale(1.2);
    }

    .colored-icon-magenta:active {
        color: rgb(200, 0, 200) !important;
        transform: scale(1.1);
    }

/* Lavender Tone */
.colored-icon-lavender {
    color: rgb(230, 230, 250) !important;
    font-size: 17px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .colored-icon-lavender:hover {
        color: rgb(240, 240, 255) !important;
        transform: scale(1.2);
    }

    .colored-icon-lavender:active {
        color: rgb(200, 200, 220) !important;
        transform: scale(1.1);
    }

/* Olive Tone */
.colored-icon-olive {
    color: rgb(128, 128, 0) !important;
    font-size: 17px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .colored-icon-olive:hover {
        color: rgb(150, 150, 50) !important;
        transform: scale(1.2);
    }

    .colored-icon-olive:active {
        color: rgb(100, 100, 0) !important;
        transform: scale(1.1);
    }

/* Fuchsia Tone */
.colored-icon-fuchsia {
    color: rgb(160, 45, 98, 0,35) !important;
    font-size: 17px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .colored-icon-fuchsia:hover {
        color: rgb(255, 100, 180) !important;
        transform: scale(1.2);
    }

    .colored-icon-fuchsia:active {
        color: rgb(200, 0, 100) !important;
        transform: scale(1.1);
    }

/* Chartreuse Tone */
.colored-icon-chartreuse {
    color: rgb(127, 255, 0) !important;
    font-size: 17px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .colored-icon-chartreuse:hover {
        color: rgb(180, 255, 50) !important;
        transform: scale(1.2);
    }

    .colored-icon-chartreuse:active {
        color: rgb(100, 200, 0) !important;
        transform: scale(1.1);
    }

/* Azure Tone */
.colored-icon-azure {
    color: rgb(0, 127, 255) !important;
    font-size: 17px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .colored-icon-azure:hover {
        color: rgb(50, 180, 255) !important;
        transform: scale(1.2);
    }

    .colored-icon-azure:active {
        color: rgb(0, 100, 200) !important;
        transform: scale(1.1);
    }


/* Ekstra Renkler için benzer yapıda devam edebiliriz. */
.nav-main > li {
    border-bottom: 2px outset rgba(33, 63, 103, 0.3); /* Soft, subtle border */
    transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transitions for both */
}

    .nav-main > li:hover {
        border-color: rgba(33, 63, 103, 0.5); /* Slightly stronger border color on hover */
        box-shadow: 0 2px 5px rgba(33, 63, 103, 0.2); /* Soft shadow to add depth */
    }

.colored-icon-1 {
    color: rgba(160, 45, 98, 0.35) !important;
    font-size: 17px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .colored-icon-1:hover {
        color: rgb(255, 100, 180) !important;
        transform: scale(1.2);
    }

    .colored-icon-1:active {
        color: rgb(200, 0, 100) !important;
        transform: scale(1.1);
    }

/* Icon 2 */
.colored-icon-2 {
    color: rgba(220, 100, 80, 0.35) !important;
    font-size: 17px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .colored-icon-2:hover {
        color: rgb(255, 140, 100) !important;
        transform: scale(1.2);
    }

    .colored-icon-2:active {
        color: rgb(220, 70, 50) !important;
        transform: scale(1.1);
    }

/* Icon 3 */
.colored-icon-3 {
    color: rgba(180, 210, 100, 0.35) !important;
    font-size: 17px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .colored-icon-3:hover {
        color: rgb(200, 230, 120) !important;
        transform: scale(1.2);
    }

    .colored-icon-3:active {
        color: rgb(150, 170, 70) !important;
        transform: scale(1.1);
    }

/* Icon 4 */
.colored-icon-4 {
    color: rgba(120, 50, 240, 0.35) !important;
    font-size: 17px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .colored-icon-4:hover {
        color: rgb(150, 80, 255) !important;
        transform: scale(1.2);
    }

    .colored-icon-4:active {
        color: rgb(100, 30, 180) !important;
        transform: scale(1.1);
    }

/* Icon 5 */
.colored-icon-5 {
    color: rgba(255, 165, 0, 0.35) !important;
    font-size: 17px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .colored-icon-5:hover {
        color: rgb(255, 200, 80) !important;
        transform: scale(1.2);
    }

    .colored-icon-5:active {
        color: rgb(255, 130, 0) !important;
        transform: scale(1.1);
    }

/* Icon 6 */
.colored-icon-6 {
    color: rgba(255, 0, 128, 0.35) !important;
    font-size: 17px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .colored-icon-6:hover {
        color: rgb(255, 40, 120) !important;
        transform: scale(1.2);
    }

    .colored-icon-6:active {
        color: rgb(220, 0, 90) !important;
        transform: scale(1.1);
    }

/* Icon 7 */
.colored-icon-7 {
    color: rgba(100, 200, 255, 0.35) !important;
    font-size: 17px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .colored-icon-7:hover {
        color: rgb(100, 170, 255) !important;
        transform: scale(1.2);
    }

    .colored-icon-7:active {
        color: rgb(70, 130, 180) !important;
        transform: scale(1.1);
    }

/* Icon 8 */
.colored-icon-8 {
    color: rgba(220, 120, 255, 0.35) !important;
    font-size: 17px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .colored-icon-8:hover {
        color: rgb(180, 100, 255) !important;
        transform: scale(1.2);
    }

    .colored-icon-8:active {
        color: rgb(130, 60, 180) !important;
        transform: scale(1.1);
    }

/* Icon 9 */
.colored-icon-9 {
    color: rgba(60, 160, 90, 0.35) !important;
    font-size: 17px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .colored-icon-9:hover {
        color: rgb(100, 200, 120) !important;
        transform: scale(1.2);
    }

    .colored-icon-9:active {
        color: rgb(40, 120, 60) !important;
        transform: scale(1.1);
    }

/* Icon 10 */
.colored-icon-10 {
    color: rgba(255, 85, 165, 0.35) !important;
    font-size: 17px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .colored-icon-10:hover {
        color: rgb(255, 100, 170) !important;
        transform: scale(1.2);
    }

    .colored-icon-10:active {
        color: rgb(200, 50, 140) !important;
        transform: scale(1.1);
    }

/* Repeat similar structure for remaining 20 icons, adjusting the rgba color values for different tones */

.k-tabstrip .k-item {
    background-color: rgba(255, 255, 255, 0.95); /* Daha opak beyaz arka plan */
    border-radius: 30px 30px 0px 0px; /* Daha yuvarlak köşeler */
    font-size: 14px; /* Okunaklı font boyutu */
    padding: 12px 24px; /* Dengeli padding */
    margin: 4px; /* Sabit boşluk */
    transition: all 0.3s ease-in-out; /* Yumuşak geçiş efekti */
    border: 1px solid #e2e8f0; /* Hafif kenarlık */
    color: #4a5568; /* Nötr metin rengi */
    font-weight: 700; /* Kalın font */
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1); /* Hafif gölge */
    position: relative;
    transform: scale(0.98);
    cursor: pointer; /* Tıklanabilir olduğunu belirtmek için imleç */
}

    .k-tabstrip .k-item:hover {
        background-color: #f0f4f8; /* Hover durumunda daha belirgin mavi tonu */
        color: #2d3748; /* Hover durumunda daha koyu metin rengi */
        transform: translateY(-3px); /* Daha belirgin kaldırma efekti */
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15); /* Hover durumunda daha belirgin gölge */
    }

    .k-tabstrip .k-item.k-state-active {
        color: #2d3748; /* Aktif durumda koyu metin rengi */
        background-color: #f0f4f8;
    }

        .k-tabstrip .k-item.k-state-active::after {
            content: '';
            position: absolute;
            left: 50%;
            right: 50%;
            bottom: 0;
            height: 4px; /* Çizgi kalınlığı */
            background: linear-gradient(90deg, #4299e1, #3182ce); /* Mavi tonlarında gradient çizgi */
            border-radius: 30px 30px 0px 0px; /* Çizgi köşeleri hafif yuvarlak */
            animation: underline 0.4s ease-in-out; /* Çizgi animasyonu */
            transform: translateX(-50%); /* Çizgiyi ortala */
            width: 90%; /* Çizgi genişliği */
        }

@keyframes underline {
    from {
        width: 0;
    }

    to {
        width: 90%;
    }
}

.k-tabstrip-left > .k-tabstrip-items .k-item {
    border-width: 1px;
    border-radius: 30px 30px 0px 0px; /* Daha yuvarlak köşeler */
    border-color: #b2bcc2cc; /* Kenarlık rengi */
}

.k-tabstrip .k-item:active {
    transform: scale(0.95); /* Tıklama sırasında hafif küçülme efekti */
    transition: transform 0.1s ease-in-out; /* Daha hızlı tıklama animasyonu */
}

.info-text {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    color: #b82151; /* Modern bir mavi ton */
    font-style: normal;
    opacity: 0.9;
}
/* Fotoğraf alanı kapsayıcısı */
.crop-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 300px;
    height: 300px;
    position: relative;
    background-color: #f4f4f4;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(0, 0, 0, 0.3);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Fotoğraf çerçevesi */
.crop-frame {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

    /* Fotoğrafın başlangıçtaki boyutu */
    .crop-frame img {
        position: absolute;
        width: 250px;
        height: 250px;
        object-fit: cover;
        cursor: grab;
        transition: transform 0.3s ease-in-out;
    }

.controls {
    margin-top: 15px;
    text-align: center;
}

/* Modern input range */
#zoomRange {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    max-width: 250px;
    height: 6px;
    border-radius: 5px;
    background: linear-gradient(to right, #007bff, #00bcd4);
    outline: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

    #zoomRange:hover {
        opacity: 1;
    }

    #zoomRange::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 18px;
        height: 18px;
        background: #007bff;
        border-radius: 50%;
        cursor: pointer;
        transition: 0.2s;
    }

    #zoomRange::-moz-range-thumb {
        width: 18px;
        height: 18px;
        background: #007bff;
        border-radius: 50%;
        cursor: pointer;
    }

#top-scroll {
    width: 100%;
    overflow-x: scroll;
    height: 8px;
    margin-bottom: 5px;
}

    #top-scroll div {
        height: 1px;
        background: transparent;
    }

#top-scroll, .k-grid-content.k-auto-scrollable {
    width: 100%;
    overflow-x: auto;
    overflow-y: auto;
    margin-bottom: 5px;
    box-sizing: border-box; /* Genişlik ve yükseklik hesaplamalarını tutarlı hale getir */
}

    #top-scroll::-webkit-scrollbar, .k-grid-content.k-auto-scrollable::-webkit-scrollbar {
        height: 3px;
        width: 3px;
        transition: all 0.3s ease;
    }

    #top-scroll::-webkit-scrollbar-track, .k-grid-content.k-auto-scrollable::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    #top-scroll::-webkit-scrollbar-thumb, .k-grid-content.k-auto-scrollable::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    #top-scroll:hover::-webkit-scrollbar, .k-grid-content.k-auto-scrollable:hover::-webkit-scrollbar {
        height: 8px;
        width: 8px;
    }

    #top-scroll:hover::-webkit-scrollbar-thumb, .k-grid-content.k-auto-scrollable:hover::-webkit-scrollbar-thumb {
        background: #555;
    }
.k-widget.k-grid.k-display-block.k-reorderable::-webkit-scrollbar {
    display: none;  /*Webkit tarayıcılar için scrollbar gizleme */
}

.k-widget.k-grid.k-display-block.k-reorderable {
    -ms-overflow-style: none;  /*Internet Explorer ve Edge için*/ 
    scrollbar-width: none;  /*Firefox için scrollbar gizleme*/ 
    overflow: auto;
}
/* Firefox için scrollbar stili */
/*@supports (scrollbar-width: thin) {
    #top-scroll, .k-grid-content.k-auto-scrollable {
        scrollbar-width: thin;
        scrollbar-color: #888 #f1f1f1;
    }
}*/

/* IE ve diğer tarayıcılar için fallback */
/* Bu tarayıcılar varsayılan scrollbar'ı kullanacak */

.beyan-bilgisi-container {
    margin-top: 10px;
    padding: 10px;
    background: rgba(0, 123, 255, 0.1); /* Hafif mavi ton */
    border-left: 4px solid #007bff; /* Dikkat çekici sol çizgi */
    border-radius: 5px;
    font-size: 14px;
}

    .beyan-bilgisi-container p {
        margin: 5px 0;
    }
/* Genel stil */
div.k-grid-footer, div.k-grid-header {
    padding-right: 17px;
    border-bottom: 1px solid #e0e0e0; /* Hafif gri çizgi */
    background-color: #f8f9fa; /* Açık arka plan rengi */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* Hafif gölge */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Modern yazı tipi */
    font-size: 13px; /* Okunabilir yazı boyutu */
    color: #000307; /* Daha koyu ve belirgin metin rengi */
    transition: all 0.3s ease; /* Geçiş efekti */
    border-radius: 4px; /* Köşeleri hafifçe yuvarlat */
    -webkit-transition: all 0.3s ease; /* Safari ve Chrome için geçiş efekti */
    -moz-transition: all 0.3s ease; /* Firefox için geçiş efekti */
    -o-transition: all 0.3s ease; /* Opera için geçiş efekti */
}

/* Başlık stili */
div.k-grid-header {
    font-weight: 800;
    letter-spacing: 0.2px;
    color: #0078D7;
    padding-right:2px;
    display: contents;
    border-bottom: 2px inset #176ecc; /* Örnek bir siyah renk */
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Footer stili */
div.k-grid-footer {
    background-color: #ffffff; /* Footer için daha açık bir arka plan */
    border-top: 1px solid #110202; /* Üst kısma bir çizgi ekle */
    padding: 10px 17px; /* Padding'i biraz artır */
    font-weight: 600; /* Footer metnini biraz daha kalın yap */
    color: #333; /* Footer metnini daha belirgin yap */
    -webkit-box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05); /* Safari ve Chrome için gölge */
    -moz-box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05); /* Firefox için gölge */
}

/* Tarayıcılar arası tutarlılık için normalize CSS */
/* Bu kısım, tarayıcılar arasındaki varsayılan stil farklılıklarını gidermek için kullanılabilir */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    #top-scroll, .k-grid-content.k-auto-scrollable {
        overflow-x: auto;
        overflow-y: auto;
    }
}

@-moz-document url-prefix() {
    #top-scroll, .k-grid-content.k-auto-scrollable {
        overflow-x: auto;
        overflow-y: auto;
    }
}
/* IE için özel stil */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    div.k-grid-header {
        color: #000307; /* IE için Highlight yerine daha koyu renk */
    }
}

/* Hover efekti */
div.k-grid-header:hover, div.k-grid-footer:hover {
    background-color: #f1f1f1; /* Fare üzerine geldiğinde arka plan rengini değiştir */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Gölgeyi biraz daha belirgin yap */
}
.block-content {
    margin: 0 auto;
    padding: 9px 9px 1px;
    max-width: 100%;
    overflow-x: visible;
    -webkit-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
    border-radius: 20px;
}

.btn-modern-link {
    border-radius: 20px; /* Yuvarlak köşeler */
    padding: 5px 12px; /* Daha küçük padding */
    font-size: 12px; /* Daha küçük font boyutu */
    font-weight: 500; /* Orta kalınlıkta yazı */
    transition: all 0.3s ease; /* Geçiş efekti */
    display: inline-flex; /* İkon ve metni yan yana hizala */
    align-items: center; /* Dikeyde ortala */
}

    .btn-modern-link i {
        margin-right: 5px; /* İkon ile metin arasına boşluk */
    }

    .btn-modern-link:hover {
        transform: translateY(-2px); /* Hafif yukarı hareket */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Gölge efekti */
    }


.layout-frenk-1 {
    font-family: 'Segoe UI', sans-serif;
    font-size: 15px;
    margin-bottom:3pt;
    margin-left:0;
    color: #ffffff;
    border-bottom-style:inset;
    background-color: #213f67ff;
    border-radius: 12px;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

    .layout-frenk-1:hover {
        /*background-color: #457b9d;*/
        transform: scale(1.03);
    }

.layout-frenk-3 {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #f8f9fa;
    padding-left:20pt !important;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    padding: 5px;
    transition: all 0.3s ease-in-out;
}

    .layout-frenk-3:hover {
        background: rgba(255, 255, 255, 0.1);
    }

.toggle-style-4 input {
    display: none;
}

.toggle-style-4 .glow-box {
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 30px;
    background-color: #dc3545;
    color: #fff;
    box-shadow: 0 0 10px rgba(220, 53, 69, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    text-align: center;
    user-select: none;
}

    .toggle-style-4 .glow-box:hover {
        box-shadow: 0 0 15px rgba(220, 53, 69, 0.8);
        transform: scale(1.02);
        border-color: #fff;
    }

.toggle-style-4 input:checked + .glow-box {
    background-color: #28a745;
    box-shadow: 0 0 15px rgba(40, 167, 69, 0.6);
}

    .toggle-style-4 input:checked + .glow-box:hover {
        box-shadow: 0 0 20px rgba(40, 167, 69, 0.8);
        border-color: #fff;
    }

.toggle-style-4 i {
    font-size: 1.2rem;
}
.checkbox-modern-icao {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.checkbox-modern-icao .form-check {
    display: flex;
    align-items: center;
    margin-right: 15px;
    margin-bottom: 5px;
}

.checkbox-modern-icao .form-check-input {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    cursor: pointer;
}

.checkbox-modern-icao .form-check-label {
    cursor: pointer;
    font-weight: 500;
    color: #495057;
}

/* Kart Stilleri */
.alt-konu-card-icao {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    padding: 20px;
    border-left: 4px solid #4e73df;
}

.alt-konu-header-icao {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2e3a4d;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/* Textarea Stilleri */
.textarea-group-icao {
    margin-top: 15px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    border-left: 3px solid #6c757d;
    position: relative;
}

    .textarea-group-icao label {
        font-weight: 500;
        margin-bottom: 8px;
        color: #495057;
    }

    .textarea-group-icao textarea {
        border-radius: 4px;
        border: 1px solid #ddd;
        transition: all 0.3s;
        width: calc(100% - 40px);
    }

        .textarea-group-icao textarea:focus {
            border-color: #4e73df;
            box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
        }

/* Belge Yükleme Butonu */
.belge-yukle-btn-icao {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #4e73df;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

    .belge-yukle-btn-icao:hover {
        background-color: #3a56b4;
    }

/* Belge Bilgisi */
.belge-bilgisi {
    font-size: 12px;
    color: #28a745;
    margin-top: 5px;
    display: flex;
    align-items: center;
}

    .belge-bilgisi i {
        margin-right: 5px;
    }

/* Tarih Input Stilleri */
.tarih-input-container-icao {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

    .tarih-input-container-icao label {
        margin-right: 10px;
        margin-bottom: 0;
        white-space: nowrap;
    }

/* Radio Button Stilleri */
.btn-group-toggle-icao .btn {
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 4px;
}

    .btn-group-toggle-icao .btn.active {
        font-weight: bold;
        box-shadow: 0 0 0 2px rgba(78, 115, 223, 0.25);
    }

.btn-group-toggle-icao .btn-outline-success.active {
    background-color: #28a745;
    color: white;
}

.btn-group-toggle-icao .btn-outline-danger.active {
    background-color: #dc3545;
    color: white;
}

/* Dosya Yükleme Alanı */
.k-upload-icao {
    border: 1px dashed #ddd;
    border-radius: 4px;
    padding: 15px;
    background: #f8f9fa;
}

/* Mevcut Dosya Bilgisi */
.mevcut-dosya-bilgisi {
    background: #e8f5e8;
    border: 1px solid #28a745;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 10px;
}

    .mevcut-dosya-bilgisi .dosya-adi {
        font-weight: bold;
        color: #155724;
    }

    .mevcut-dosya-bilgisi .bilgi-text {
        font-size: 12px;
        color: #28a745;
        margin-top: 5px;
    }

/* Temel Modal Stili */
.belge-modal-icao {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.belge-modal-icao-content {
    position: relative;
    background-color: #fff;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 500px;
    border: none;
    transform: translateY(-20px);
    animation: slideUp 0.3s ease forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

/* Modal Başlık */
.belge-modal-icao-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

    .belge-modal-icao-header h4 {
        margin: 0;
        font-size: 1.5rem;
        color: #2c3e50;
        font-weight: 600;
    }

/* Kapatma Butonu */
.belge-modal-icao-close {
    color: #95a5a6;
    font-size: 1.8rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.2s;
}

    .belge-modal-icao-close:hover {
        color: #e74c3c;
        transform: scale(1.1);
    }

input[type="file"] {
    padding: 0.5rem;
}

/* Responsive Düzen */
@media (max-width: 600px) {
    .belge-modal-icao-content {
        margin: 20% auto;
        width: 95%;
        padding: 1.5rem;
    }
}

/* Responsive Düzen */
@media (max-width: 768px) {
    .checkbox-modern-icao {
        flex-direction: column;
        gap: 8px;
    }

    .tarih-input-container-icao {
        flex-direction: column;
        align-items: flex-start;
    }

        .tarih-input-container-icao label {
            margin-bottom: 5px;
        }

    .belge-modal-icao-content {
        width: 90%;
    }
}

.alt-konu-card-icao {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 15px;
    background-color: #f9f9f9;
}

.alt-konu-header-icao {
    font-weight: bold;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.degerlendirme-detay {
    margin-top: 10px;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
}

.kismi-islem-detay {
    margin-top: 10px;
    padding: 10px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: block !important;
    font-weight: 500 !important;
    margin-bottom: 8px !important;
    color: #495057 !important;
    white-space: nowrap !important;
    width: 100% !important;
    float: none !important;
    clear: both !important;
}

.takvim-div {
    margin-top: 5px;
}

/* Güncelleme Uyarısı */
.guncelleme-uyarisi-icao {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 15px;
    color: #856404;
}

