html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.buttonfl {
    float: right;
}

.flx {
    display: flex;
    color: black;
}

.bg-c {
    background-color: #f8f5f2
}

.buttonbgc {
    background-color: #c9cee8;
}

.buttonbgcsoft {
    background-color: #abdaef;
}

.table > :not(caption) > * > * {
    padding: 0.1rem .0rem !important;
    background-color: var(--phoenix-table-bg);
    border-bottom-width: 1px;
    -webkit-box-shadow: inset 0 0 0 9999px var(--phoenix-table-accent-bg);
    box-shadow: inset 0 0 0 9999px var(--phoenix-table-accent-bg);
}

.ly-font {
    font-size: 14px;
    font-weight: 700;
}

.add-fs {
    font-size: 13px;
    padding-left: 0.2rem;
}

.fs-14{
    font-size:14px;
}

.tr-fs {
    font-size: 16px;
}

.hght25 {
    height: 25px;
}

.mt-20 {
    margin-top: 20px;
}

.preview-image {
    margin: 10px;
}

.zoom {
    transition: transform 1.2s; /* Animation */
    margin: 0 auto;
}

    .zoom:hover {
        transform: scale(2.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
    }

.brandListImage {
    width: 60px;
    height: 45px;
}

.fltrbtn-bgc {
    background-color: #becded;
}

.align-th-td {
    text-align: right !important;
}

.center-th-td {
    text-align: center !important;
}


.loading {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 9999;
}

    .loading .spinner-border {
        position: absolute;
        top: 40%;
        left: 50%;
    }

.brand-section {
    margin-bottom: 20px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ccc;
}

.brand-label {
    font-size: 1.1em;
}

.catalog-list {
    margin-bottom: 20px;
}

.blink {
    animation: blink 1s infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.brand-section, .catalog-list {
    animation-name: fadeIn;
    animation-duration: 1s;
}

    .brand-section .brand-label.selected {
        color: green; /* Seçildiğinde etiket rengi */
    }

    .brand-section:hover {
        background-color: #f8f8f8; /* Mouse üzerindeyken arkaplan rengi */
    }

    .catalog-list li {
        transition: transform .3s ease-in-out; /* Animasyon efekti */
    }

        .catalog-list li.selected {
            transform: scale(1.1); /* Seçildiğinde büyüklüğü */
            color: blue; /* Seçildiğinde renk */
        }

@keyframes rotateIn {
    from {
        transform: rotate(0deg);
        opacity: 0;
    }

    to {
        transform: rotate(360deg);
        opacity: 1;
    }
}

/* Checkbox Styling */
input.catalog-checkbox {
    display: none;
}

    input.catalog-checkbox + label {
        position: relative;
        padding-left: 30px;
        cursor: pointer;
        display: inline-block;
    }

        /* Custom Checkbox */
        input.catalog-checkbox + label::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            border: 2px solid #555;
            border-radius: 3px;
            transition: transform 0.3s ease;
        }

    /* Checkbox Checked State */
    input.catalog-checkbox:checked + label::before {
        content: '\2714'; /* Unicode check mark. */
        color: #fff;
        background-color: #4CAF50;
        border-color: #4CAF50;
        text-align: center;
        line-height: 20px;
        transform: translateY(-50%) rotate(360deg);
        transition: transform 0.3s ease, color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    }

    /* Label Font Size Change */
    input.catalog-checkbox:checked + label {
        font-size: 1.2em;
        transition: font-size 0.3s ease;
    }

/* Marka Checkbox Styling */
input.brand-checkbox {
    display: none;
}

    input.brand-checkbox + label {
        position: relative;
        padding-left: 30px;
        cursor: pointer;
        display: inline-block;
    }

        /* Custom Marka Checkbox */
        input.brand-checkbox + label::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            border: 2px solid #555;
            border-radius: 3px;
            transition: transform 0.3s ease;
        }

    /* Marka Checkbox Checked State */
    input.brand-checkbox:checked + label::before {
        content: '\2714';
        color: #fff;
        background-color: #2196F3;
        border-color: #2196F3;
        text-align: center;
        line-height: 20px;
        transform: translateY(-50%) rotate(360deg);
        transition: transform 0.3s ease, color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    }

    /* Marka Label Font Size Change */
    input.brand-checkbox:checked + label {
        font-size: 1.2em;
        transition: font-size 0.3s ease;
    }


.table-fixed thead {
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 10;
}

    /* Opsiyonel: Tablonun başlığının altında gölge efekti */
    .table-fixed thead th {
        box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.4);
    }


td.catalogs {
    width: 6%;
    overflow-wrap: break-word;
    word-break: break-all;
}

.catalogs p {
    white-space: normal;
}

.checkbox-container {
    display: flex;
    flex-wrap: wrap;
}

.form-check-inline {
    margin-right: 10px;
    margin-bottom: 5px;
}

.checkbox-container {
    display: flex;
    flex-direction: column;
}

.main-group {
    margin-bottom: 1em;
}

.form-check-inline {
    margin-right: 1em;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}