* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    margin: 0;
    min-height: 100vh;

    font-family: Arial, Helvetica, sans-serif;

    background: #eef2f7;
    color: #1f2937;

    font-size: 14px;
}


/* =========================================================
   GİRİŞ SAYFASI
========================================================= */

.giris-sayfasi {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background:
        linear-gradient(
            135deg,
            #172554 0%,
            #1d4ed8 48%,
            #06b6d4 100%
        );
}

.giris-kutu {
    width: 100%;
    max-width: 420px;

    padding: 30px;

    background: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 12px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.25);
}

.logo-alani {
    margin-bottom: 25px;

    text-align: center;
}

.logo {
    width: 60px;
    height: 60px;

    margin: 0 auto 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #1d4ed8;
    color: #ffffff;

    font-size: 20px;
    font-weight: bold;

    box-shadow:
        0 6px 15px rgba(29, 78, 216, 0.25);
}

.logo-alani h1 {
    margin: 0;

    color: #172554;

    font-size: 20px;
    line-height: 1.3;
}

.logo-alani p {
    margin: 7px 0 0;

    color: #64748b;

    font-size: 13px;
    line-height: 1.5;
}


/* =========================================================
   GENEL FORM
========================================================= */

.form-grup {
    margin-bottom: 17px;
}

.form-grup label {
    display: block;

    margin-bottom: 7px;

    color: #334155;

    font-size: 13px;
    font-weight: bold;
}

.form-grup input,
.form-satir input,
.form-satir select,
.form-satir textarea {
    width: 100%;

    border: 1px solid #cbd5e1;
    border-radius: 6px;

    outline: none;

    background: #ffffff;
    color: #1f2937;

    font-family: inherit;
    font-size: 14px;

    transition:
        border-color 0.15s,
        box-shadow 0.15s;
}

.form-grup input {
    height: 44px;

    padding: 0 12px;
}

.form-satir input,
.form-satir select {
    height: 38px;

    padding: 0 10px;
}

.form-satir textarea {
    min-height: 90px;

    padding: 10px;

    resize: vertical;
}

.form-grup input:focus,
.form-satir input:focus,
.form-satir select:focus,
.form-satir textarea:focus {
    border-color: #2563eb;

    box-shadow:
        0 0 0 3px rgba(37, 99, 235, 0.12);
}


/* =========================================================
   GİRİŞ BUTONU
========================================================= */

.btn-giris {
    width: 100%;
    height: 45px;

    border: 0;
    border-radius: 7px;

    background: #2563eb;
    color: #ffffff;

    font-size: 14px;
    font-weight: bold;

    cursor: pointer;

    transition:
        background 0.15s,
        transform 0.1s;
}

.btn-giris:hover {
    background: #1d4ed8;
}

.btn-giris:active {
    transform: translateY(1px);
}


/* =========================================================
   MESAJLAR
========================================================= */

.hata-mesaji,
.mesaj {
    margin-bottom: 12px;

    padding: 10px 13px;

    border-radius: 6px;

    font-size: 13px;
    font-weight: bold;

    line-height: 1.45;
}

.hata-mesaji,
.mesaj-hata {
    border-left: 4px solid #dc2626;

    background: #fee2e2;
    color: #b91c1c;
}

.mesaj-basarili {
    border-left: 4px solid #16a34a;

    background: #dcfce7;
    color: #166534;
}


/* =========================================================
   ÜST BAR
========================================================= */

.ust-bar {
    min-height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding: 9px 20px;

    background: #172554;
    color: #ffffff;

    box-shadow:
        0 3px 10px rgba(0, 0, 0, 0.18);
}

.ust-bar > div:first-child {
    min-width: 0;

    color: #ffffff;

    font-size: 16px;
    font-weight: bold;

    letter-spacing: 0.3px;
}

.ust-bar > div:last-child {
    display: flex;
    align-items: center;

    gap: 8px;

    min-width: 0;

    font-size: 13px;
}

.kullanici-alani > span {
    height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 12px;

    border-radius: 5px;

    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;

    font-size: 13px;
    font-weight: bold;
    line-height: 1;

    white-space: nowrap;
}

.btn-panel,
.btn-cikis {
    height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 13px;

    border-radius: 5px;

    color: #ffffff;

    text-decoration: none;

    font-size: 12px;
    font-weight: bold;
    line-height: 1;

    white-space: nowrap;

    transition:
        background 0.15s,
        transform 0.1s,
        filter 0.15s;
}

.btn-panel {
    background: #2563eb;
}

.btn-panel:hover {
    background: #1d4ed8;
}

.btn-cikis {
    background: #dc2626;
}

.btn-cikis:hover {
    background: #b91c1c;
}

.btn-panel:active,
.btn-cikis:active {
    transform: translateY(1px);
}

/* =========================================================
   SAYFA
========================================================= */

.sayfa {
    width: 100%;
    max-width: 1150px;

    margin: 20px auto;

    padding: 0 15px;
}

.sayfa-baslik {
    margin-bottom: 10px;

    padding: 13px 16px;

    border-left: 5px solid #2563eb;

    background: #172554;

    box-shadow:
        0 2px 5px rgba(0, 0, 0, 0.06);

    color: #172554;
}

.sayfa-baslik h1,
.sayfa-baslik h2,
.sayfa-baslik h3 {
    margin: 0;

    color: #ffffff;

    font-size: 17px;
    line-height: 1.35;
}

.sayfa-baslik p {
    margin: 5px 0 0;

    color: #ffffff;

    font-size: 12px;
    font-weight: normal;

    line-height: 1.5;
}

.sayfa-baslik-alan {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    margin-bottom: 10px;
}

.sayfa-baslik-alan .sayfa-baslik {
    flex: 1;

    margin-bottom: 0;
}


/* =========================================================
   SAYFA ALT İŞLEM ALANI
========================================================= */

.sayfa-alt {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    gap: 8px;

    margin-top: 10px;
}

form > .sayfa-alt {
    justify-content: flex-end;

    padding: 10px 0 0;
}


/* =========================================================
   PANEL BİLGİ
========================================================= */

.panel-bilgi {
    margin-bottom: 14px;
    border-left: 5px solid #06b6d4;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08);
}

.panel-bilgi-baslik {
    padding: 10px 15px 4px;
    background: #ffffff;
    color: #0891b2;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.4;
}

.panel-bilgi-metin {
    padding: 4px 15px 11px;
    color: #1e293b;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.5;
}

.panel-bilgi-metin span {
    margin-left: 8px;
    color: #64748b;
    font-weight: normal;
}


/* =========================================================
   PANEL MENÜ
========================================================= */

.panel-menu {
    display: grid;

    grid-template-columns: 1fr;

    gap: 8px;

    margin-bottom: 16px;
}

.panel-menu-kart {
    position: relative;

    min-height: 68px;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 10px 15px 10px 12px;

    border-left: 5px solid transparent;
    border-radius: 7px;

    background: #ffffff;
    color: #1f2937;

    text-decoration: none;

    box-shadow:
        0 2px 6px rgba(15, 23, 42, 0.08);

    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        background 0.15s ease;
}

.panel-menu-kart:hover {
    transform: translateY(-2px);

    background: #ffffff;

    box-shadow:
        0 5px 14px rgba(15, 23, 42, 0.13);
}

.panel-menu-kart:active {
    transform: translateY(0);
}


/* =========================================================
   PANEL MENÜ İKONU
========================================================= */

.panel-menu-ikon {
    width: 44px;
    height: 44px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: #f1f5f9;

    font-size: 21px;

    line-height: 1;
}


/* =========================================================
   PANEL MENÜ İÇERİĞİ
========================================================= */

.panel-menu-icerik {
    min-width: 0;

    flex: 1;

    display: flex;
    flex-direction: column;

    gap: 3px;
}

.panel-menu-icerik strong {
    color: #1e293b;

    font-size: 14px;
    font-weight: bold;

    line-height: 1.35;
}

.panel-menu-icerik span {
    color: #64748b;

    font-size: 12px;
    font-weight: normal;

    line-height: 1.4;
}


/* =========================================================
   PANEL MENÜ OK
========================================================= */

.panel-menu-ok {
    width: 30px;
    height: 30px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f1f5f9;
    color: #475569;

    font-size: 18px;
    font-weight: bold;

    transition:
        background 0.15s,
        color 0.15s,
        transform 0.15s;
}

.panel-menu-kart:hover .panel-menu-ok {
    color: #ffffff;

    transform: translateX(2px);
}


/* =========================================================
   PANEL MENÜ RENKLERİ
========================================================= */

.panel-menu-kart.menu-mavi {
    border-left-color: #2563eb;
}

.panel-menu-kart.menu-mavi .panel-menu-ikon {
    background: #dbeafe;
}

.panel-menu-kart.menu-mavi .panel-menu-ok {
    background: #dbeafe;
    color: #1d4ed8;
}

.panel-menu-kart.menu-mavi:hover .panel-menu-ok {
    background: #2563eb;
    color: #ffffff;
}


.panel-menu-kart.menu-yesil {
    border-left-color: #059669;
}

.panel-menu-kart.menu-yesil .panel-menu-ikon {
    background: #d1fae5;
}

.panel-menu-kart.menu-yesil .panel-menu-ok {
    background: #d1fae5;
    color: #047857;
}

.panel-menu-kart.menu-yesil:hover .panel-menu-ok {
    background: #059669;
    color: #ffffff;
}


.panel-menu-kart.menu-turuncu {
    border-left-color: #ea580c;
}

.panel-menu-kart.menu-turuncu .panel-menu-ikon {
    background: #ffedd5;
}

.panel-menu-kart.menu-turuncu .panel-menu-ok {
    background: #ffedd5;
    color: #c2410c;
}

.panel-menu-kart.menu-turuncu:hover .panel-menu-ok {
    background: #ea580c;
    color: #ffffff;
}


.panel-menu-kart.menu-mor {
    border-left-color: #7c3aed;
}

.panel-menu-kart.menu-mor .panel-menu-ikon {
    background: #ede9fe;
}

.panel-menu-kart.menu-mor .panel-menu-ok {
    background: #ede9fe;
    color: #6d28d9;
}

.panel-menu-kart.menu-mor:hover .panel-menu-ok {
    background: #7c3aed;
    color: #ffffff;
}


.panel-menu-kart.menu-lacivert {
    border-left-color: #334155;
}

.panel-menu-kart.menu-lacivert .panel-menu-ikon {
    background: #e2e8f0;
}

.panel-menu-kart.menu-lacivert .panel-menu-ok {
    background: #e2e8f0;
    color: #334155;
}

.panel-menu-kart.menu-lacivert:hover .panel-menu-ok {
    background: #334155;
    color: #ffffff;
}


/* =========================================================
   PANEL BÖLÜM BAŞLIĞI
========================================================= */

.panel-bolum-baslik {
    margin: 18px 0 8px;

    padding: 8px 2px;

    border-bottom: 2px solid #cbd5e1;

    color: #475569;

    font-size: 11px;
    font-weight: bold;

    letter-spacing: 0.5px;
}


/* =========================================================
   YÖNETİCİ PANELİ ÖZET KARTLARI
========================================================= */

.yonetici-ozet {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 8px;

    margin-bottom: 18px;
}

.ozet-kart {
    min-height: 78px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 9px 8px;

    border-radius: 7px;

    background: #ffffff;

    border-top: 4px solid transparent;

    box-shadow:
        0 2px 6px rgba(15, 23, 42, 0.08);
}

.ozet-kart strong {
    margin-bottom: 3px;

    color: #172554;

    font-size: 24px;
    font-weight: bold;

    line-height: 1;
}

.ozet-kart span {
    color: #64748b;

    font-size: 10px;
    font-weight: bold;

    text-align: center;

    line-height: 1.3;
}


/* =========================================================
   YÖNETİCİ ÖZET RENKLERİ
========================================================= */

.ozet-turuncu {
    border-top-color: #ea580c;
}

.ozet-turuncu strong {
    color: #c2410c;
}


.ozet-mor {
    border-top-color: #7c3aed;
}

.ozet-mor strong {
    color: #6d28d9;
}


.ozet-yesil {
    border-top-color: #059669;
}

.ozet-yesil strong {
    color: #047857;
}


.ozet-mavi {
    border-top-color: #2563eb;
}

.ozet-mavi strong {
    color: #1d4ed8;
}


/* =========================================================
   PERSONEL BİLGİLERİ
========================================================= */

.personel-bilgi {
    margin-bottom: 12px;

    overflow: hidden;

    border: 1px solid #cbd5e1;
    border-left: 5px solid #2563eb;
    border-radius: 7px;

    background: #ffffff;

    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.04);
}

.personel-bilgi-baslik {
    padding: 8px 12px;

    background: #172554;
    color: #ffffff;

    font-size: 11px;
    font-weight: bold;

    line-height: 1.3;
}

.personel-bilgi-icerik {
    display: grid;

    grid-template-columns: 1fr 1fr;
}

.personel-bilgi-alan {
    padding: 9px 12px;
}

.personel-bilgi-alan + .personel-bilgi-alan {
    border-left: 1px solid #e2e8f0;
}

.personel-bilgi-alan span {
    display: block;

    margin-bottom: 3px;

    color: #64748b;

    font-size: 10px;
    font-weight: bold;

    line-height: 1.3;
}

.personel-bilgi-alan strong {
    display: block;

    color: #1e293b;

    font-size: 13px;
    font-weight: bold;

    line-height: 1.4;
}


/* =========================================================
   FORM TABLOSU
========================================================= */

.form-tablo {
    overflow: hidden;

    border: 1px solid #cbd5e1;
    border-radius: 7px;

    background: #ffffff;

    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.04);
}

.form-satir {
    display: grid;

    grid-template-columns: 190px minmax(0, 1fr);

    align-items: center;

    min-height: 55px;

    border-bottom: 1px solid #e2e8f0;
}

.form-satir:last-child {
    border-bottom: 0;
}

.form-satir > label {
    height: 100%;

    display: flex;
    align-items: center;

    padding: 8px 12px;

    background: #e0f2fe;

    color: #164e63;

    font-size: 13px;
    font-weight: bold;

    line-height: 1.35;
}

.form-satir > input,
.form-satir > select,
.form-satir > textarea {
    margin: 8px 12px;

    width: calc(100% - 24px);
}


/* =========================================================
   FORM AÇIKLAMA
========================================================= */

.form-satir-aciklama {
    display: grid;

    grid-template-columns: 190px minmax(0, 1fr);

    align-items: stretch;

    min-height: 55px;

    border-bottom: 1px solid #e2e8f0;
}

.form-satir-aciklama > label {
    display: flex;
    align-items: flex-start;

    padding: 15px 12px;

    background: #e0f2fe;

    color: #164e63;

    font-size: 13px;
    font-weight: bold;

    line-height: 1.35;
}

.form-satir-aciklama > div {
    display: flex;
    align-items: center;

    padding: 9px 12px;

    background: #f8fafc;

    color: #64748b;

    font-size: 12px;

    line-height: 1.45;
}


/* =========================================================
   CHECKBOX
========================================================= */

.form-checkbox {
    min-height: 38px;

    display: flex;
    align-items: center;

    gap: 8px;

    margin: 8px 12px;

    color: #334155;

    font-size: 13px;
    font-weight: bold;
}

.form-checkbox input {
    width: 17px;
    height: 17px;

    margin: 0;

    accent-color: #2563eb;

    cursor: pointer;
}

.form-checkbox label {
    height: auto !important;

    display: block !important;

    padding: 0 !important;

    background: transparent !important;

    color: #334155 !important;

    font-size: 13px !important;
    font-weight: bold !important;

    cursor: pointer;
}


/* =========================================================
   BUTONLAR - GENEL
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 36px;

    min-width: 90px;

    padding: 0 12px;

    border: 0;
    border-radius: 5px;

    color: #ffffff;

    text-decoration: none;

    font-family: inherit;
    font-size: 12px;
    font-weight: bold;

    line-height: 1;

    cursor: pointer;

    white-space: nowrap;

    transition:
        background 0.15s,
        transform 0.1s,
        filter 0.15s;
}

.btn:hover {
    filter: brightness(0.94);
}

.btn:active {
    transform: translateY(1px);
}


/* =========================================================
   BUTON RENKLERİ
========================================================= */

.btn-mavi {
    background: #2563eb;
}

.btn-mavi:hover {
    background: #1d4ed8;
}

.btn-gri {
    background: #64748b;
}

.btn-gri:hover {
    background: #475569;
}

.btn-yesil {
    background: #16a34a;
}

.btn-yesil:hover {
    background: #15803d;
}

.btn-kirmizi {
    background: #dc2626;
}

.btn-kirmizi:hover {
    background: #b91c1c;
}

.btn-turuncu {
    background: #ea580c;
}

.btn-turuncu:hover {
    background: #c2410c;
}


/* =========================================================
   ANA / YENİ BUTONLAR
========================================================= */

.btn-ana {
    min-width: 130px;

    height: 36px;
}


/* =========================================================
   TABLO İŞLEM BUTONLARI
========================================================= */

.btn-tablo {
    min-width: 78px;

    height: 30px;

    padding: 0 9px;

    font-size: 11px;
}

.veri-tablosu .btn {
    margin: 1px;
}


/* =========================================================
   VERİ TABLOSU
========================================================= */

.tablo-kapsayici {
    width: 100%;

    overflow-x: auto;

    border: 1px solid #cbd5e1;
    border-radius: 7px;

    background: #ffffff;

    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.04);
}

.veri-tablosu {
    width: 100%;

    border-collapse: collapse;

    font-size: 12px;
}

.veri-tablosu th {
    padding: 9px 9px;

    background: #172554;
    color: #ffffff;

    border-right: 1px solid #334155;

    text-align: left;

    white-space: nowrap;

    font-size: 11px;
    font-weight: bold;

    line-height: 1.3;
}

.veri-tablosu th:last-child {
    border-right: 0;
}

.veri-tablosu td {
    padding: 8px 9px;

    border-bottom: 1px solid #e2e8f0;

    color: #334155;

    vertical-align: middle;

    line-height: 1.4;
}

.veri-tablosu tbody tr:nth-child(even) {
    background: #f8fafc;
}

.veri-tablosu tbody tr:hover {
    background: #e0f2fe;
}

.veri-tablosu tbody tr:last-child td {
    border-bottom: 0;
}

.veri-tablosu td strong {
    color: #1e293b;
}

.veri-tablosu td small {
    color: #64748b;

    font-size: 11px;
}


/* =========================================================
   TABLO ÖZEL ALANLARI
========================================================= */

.tablo-bos {
    padding: 25px !important;

    text-align: center;

    color: #64748b !important;

    font-size: 13px;
}

.aciklama-hucre {
    max-width: 280px;

    word-break: break-word;
}

.veri-tablosu td[colspan] {
    text-align: center;
}


/* =========================================================
   YÖNETİCİ İŞLEM FORMLARI
========================================================= */

.veri-tablosu form {
    display: inline-flex;
    align-items: center;

    margin: 1px;
}

.veri-tablosu form .btn {
    margin: 0;
}


/* =========================================================
   DURUM ROZETLERİ
========================================================= */

.durum,
.durum-bekliyor,
.durum-onaylandi,
.durum-reddedildi {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 24px;

    padding: 3px 8px;

    border-radius: 12px;

    font-size: 11px;
    font-weight: bold;

    white-space: nowrap;

    line-height: 1;
}

.durum-bekliyor {
    background: #ffedd5;
    color: #c2410c;
}

.durum-onaylandi {
    background: #dcfce7;
    color: #15803d;
}

.durum-reddedildi {
    background: #fee2e2;
    color: #b91c1c;
}


/* =========================================================
   MOBİL
========================================================= */

@media (max-width: 700px) {

    body {
        font-size: 13px;
    }

    .ust-bar {
        min-height: 100px;

        padding: 10px 12px;

        gap: 10px;
    }

    .ust-bar > div:first-child {
        font-size: 14px;
    }

    .ust-bar > div:last-child {
        gap: 7px;
    }

    .btn-cikis {
        min-height: 30px;

        padding: 0 8px;
    }

    .sayfa {
        margin-top: 12px;

        padding: 0 10px;
    }

    .sayfa-baslik {
        padding: 11px 12px;
    }

    .sayfa-baslik h1,
    .sayfa-baslik h2,
    .sayfa-baslik h3 {
        font-size: 15px;
    }

    .sayfa-baslik p {
        font-size: 11px;
    }

    .sayfa-baslik-alan {
        flex-direction: column;
        align-items: stretch;
    }

    .sayfa-baslik-alan .btn-ana {
        width: 100%;
    }

    .giris-kutu {
        padding: 22px;
    }

    .panel-bilgi-metin span {
        display: block;

        margin: 5px 0 0;
    }

    .panel-menu {
        gap: 7px;
    }

    .panel-menu-kart {
        min-height: 64px;

        gap: 10px;

        padding: 9px 10px;
    }

    .panel-menu-ikon {
        width: 40px;
        height: 40px;

        font-size: 19px;
    }

    .panel-menu-icerik strong {
        font-size: 13px;
    }

    .panel-menu-icerik span {
        font-size: 11px;
    }

    .panel-menu-ok {
        width: 27px;
        height: 27px;

        font-size: 16px;
    }

    .panel-bolum-baslik {
        margin-top: 14px;
    }

    .yonetici-ozet {
        grid-template-columns: repeat(2, 1fr);

        gap: 7px;

        margin-bottom: 14px;
    }

    .ozet-kart {
        min-height: 70px;
    }

    .ozet-kart strong {
        font-size: 21px;
    }

    .ozet-kart span {
        font-size: 9px;
    }

    .form-satir {
        grid-template-columns: 1fr;

        padding: 0;
    }

    .form-satir > label {
        min-height: 35px;
    }

    .form-satir > input,
    .form-satir > select,
    .form-satir > textarea {
        margin: 8px 12px;
    }

    .form-checkbox {
        margin: 8px 12px;
    }

    form > .sayfa-alt {
        justify-content: flex-end;
    }

    .tablo-kapsayici {
        border-radius: 6px;
    }

    .veri-tablosu {
        min-width: 650px;
    }

    .veri-tablosu th {
        padding: 8px;

        font-size: 10px;
    }

    .veri-tablosu td {
        padding: 7px 8px;

        font-size: 11px;
    }

    .veri-tablosu .btn-tablo {
        min-width: 78px;

        height: 30px;

        padding: 0 8px;

        font-size: 10px;
    }

    .giris-sayfasi {
        padding: 15px;
    }
}


/* =========================================================
   ÇOK KÜÇÜK EKRANLAR
========================================================= */

@media (max-width: 430px) {

    .giris-kutu {
        padding: 18px;
    }

    .logo {
        width: 54px;
        height: 54px;
    }

    .logo-alani h1 {
        font-size: 18px;
    }

    .ust-bar {
        min-height: 100px;

        align-items: flex-start;
        flex-direction: column;

        padding: 10px 12px;

        gap: 10px;
    }

    .ust-bar > div:last-child {
        width: 100%;

        justify-content: space-between;

        text-align: left;
    }

    .sayfa {
        padding: 0 8px;
    }

    .sayfa-alt {
        flex-wrap: wrap;
    }

    form > .sayfa-alt {
        justify-content: flex-end;
    }

    form > .sayfa-alt .btn {
        min-width: 90px;
    }

    .yonetici-ozet {
        grid-template-columns: repeat(2, 1fr);
    }

    .panel-menu-kart {
        min-height: 62px;
    }

    .panel-menu-icerik span {
        display: none;
    }
}
