html 
{
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin-bottom: 60px;
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

/* SIDEBAR */
.sidebar {
    height: 100vh;
    width: 250px;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
}

    .sidebar .nav-link i {
        width: 20px;
        text-align: center;
        margin-right: 8px;
    }

    .sidebar .nav-link.active {
        background-color: #dbeafe;
        color: #1d4ed8 !important;
        font-weight: 600;
        border-radius: 6px;
        border-left: 4px solid #1d4ed8;
        padding-left: 11px;
    }

.menu-area {
    overflow-y: auto;
}

.logo-area {
    background: white;
}

.main-content {
    margin-left: 250px;
    padding: 20px;
}

/* SELECT2 - ÜRÜN GÖRSELİ */
.simple-item-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.simple-item-thumb {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    flex-shrink: 0;
}

.simple-item-option-selected {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: 100%;
}

.simple-item-thumb-selected {
    width: 18px;
    height: 18px;
    object-fit: cover;
    border: 1px solid #ccc;
    border-radius: 3px;
    flex-shrink: 0;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    display: flex !important;
    align-items: center;
    gap: 6px;
    line-height: normal !important;
    padding-left: 8px;
    padding-right: 20px;
}

/* GÖRSEL ÖNİZLEME */

.hover-thumb {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #ddd;
    cursor: pointer;
}

#imagePreviewBox {
    position: absolute;
    z-index: 99999;
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.20);
    padding: 6px;
    border-radius: 8px;
    pointer-events: none;
    display: none;
}

    #imagePreviewBox img {
        max-width: 220px;
        max-height: 220px;
        display: block;
        border-radius: 6px;
    }

/* MOBIL */
@media (max-width: 768px) {
    .logo-area img {
        max-height: 40px !important;
    }

    @media (max-width: 768px) {
        #imagePreviewBox {
            display: none !important;
        }
    }

    .logo-area div[style*="font-size: 36px"] {
        font-size: 26px !important;
    }

    .nav-link {
        font-size: 14px;
    }

    h1, h2, h3, h4 {
        font-size: 20px;
    }

    .table {
        font-size: 12px;
    }

    .form-label {
        font-size: 14px;
    }

    .btn {
        font-size: 14px;
    }

    .card-body {
        font-size: 13px;
    }

    .card h6 {
        font-size: 15px;
    }

    .badge {
        font-size: 11px;
    }

    .select2-container .select2-selection--single {
        height: 38px;
        padding-top: 4px;
    }

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 28px !important;
    }

    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 36px;
    }
}

/* Select kutusunun kendi yüksekliği */
.select2-container .select2-selection--single {
    height: 50px !important;
    padding-top: 0px !important;
    border: 1px solid #ced4da !important;
}

/* Seçili yazı/görsel hizası */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    display: flex !important;
    align-items: center;
    gap: 6px;
    height: 50px !important;
    line-height: 50px !important;
    padding-left: 8px !important;
    padding-right: 28px !important;
}

/* Sağdaki ok hizası */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 50px !important;
}

.big-dropdown {
    max-height: none !important;
}

    .big-dropdown .select2-results__options {
        max-height: 700px !important;
        overflow-y: auto !important;
    }

.select2-container--open .select2-dropdown {
    max-height: none !important;
}




