body {
    background-color: #fff;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

#searchPanel {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: #f8f9fa;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    height: 100%;
    transition: bottom 0.4s ease;
    z-index: 9999;
    overflow-y: auto; /* İçerik taşarsa dikey kaydırma eklenecek */
}

/* Panel açıldığında görünen hale getirilir */
#searchPanel.active {
    bottom: 0;
}

.close-btn {
    text-align: right;
}

.search-header {
    position: sticky;
    top: 0;
    background-color: #fce4c8;
    z-index: 1000;
    padding: 10px;
    border-radius: 10px;
}


.card-custom {
    position: relative;
    height: 150px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    /* Gölgeyi güçlendirdik */
    border: 3px solid rgb(223 214 214 / 30%);
    /* Daha belirgin bir çerçeve */
}

.card-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    /* Koyu renk katmanı */
    z-index: 1;
}

.card-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgb(0 0 0);
    text-align: center;
    z-index: 2;
    padding: 5px 10px;
    text-transform: uppercase;
    word-wrap: break-word;
    /* Bu satırı ekleyin */
    white-space: normal;
    /* Uzun kelimelerin taşmasını engeller */
}

@media (max-width: 768px) {
    .card-title {
        font-size: 20px;
    }
}

.info-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    border: 2px solid #dedede;
    height: 120px;
    display: flex;
    border: 2px solid rgb(203 203 203 / 30%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.info-icon {
    color: #5b5b5b;
    font-size: 18px;
}

.info-text {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.info-text a {
    text-decoration: none;
    color: #333;
}

@media (max-width: 768px) {
    .info-card {
        height: 100px;
    }

    .info-text {
        font-size: 14px;
        font-weight: 500;
    }
}

.carousel-items {
    text-align: center;
}

.carousel-items img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ddd;
}

.carousel-caption {
    position: static;
    color: #333;
    font-size: 14px;
    font-weight: bold;
    margin-top: -10px;
}