html, body {
    height: 100%;
}

body {
    background-color: #AE2448;
    color: #fff; /* kahverengi - isterseniz tonu değiştiririz */
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.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;
}
table, .table {
    color: #fff;
}

    .table thead th {
        color: #fff;
    }

    .table tbody td {
        color: #fff;
    }

/* Stripe (çizgili) satırların arka planını kahverengiye uygun yapalım */
.table-striped > tbody > tr:nth-of-type(odd) > * {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.06);
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
.brand-big {
    font-size: 28px;
    font-weight: 700;
}
.btn-success, .btn-success:hover, .btn-success:focus, .btn-success:active {
    color: #fff !important;
}

/* Kategori butonları */
.btn-kategori {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.btn-kategori:hover {
    background-color: rgba(255, 255, 255, 0.25);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-kategori-aktif {
    background-color: #fff;
    color: #AE2448;
    border: 2px solid #fff;
    font-weight: 600;
}

.btn-kategori-aktif:hover {
    background-color: #f0f0f0;
    color: #AE2448;
    border-color: #f0f0f0;
}

/* Kategori container */
.kategori-container {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Mobil için kategori düzeni */
@media (max-width: 767px) {
    .kategori-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .kategori-container .btn-group {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .kategori-container .btn-group .btn {
        width: 100%;
        margin-bottom: 8px;
        border-radius: 0.375rem !important;
    }
}

/* Logo açılış animasyonu */
@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}