/* Sekme Butonları Kapsayıcısı */
.tab-buttons {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 25px;
}

/* Sekme Butonları */
.tab-btn {
    flex: 1;
    padding: 12px 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    background-color: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

/* Butonların üzerine gelince */
.tab-btn:hover {
    background-color: #f5f5f5;
    color: #333;
}

/* Aktif Sekme Butonu */
.tab-btn.active {
    color: #d9534f; /* Ana kırmızı renk */
    border-bottom-color: #d9534f;
}

/* Sekme İçeriği */
.tab-content {
    display: none; /* Aktif olmayan içeriği gizle */
}

/* Aktif Sekme İçeriği */
.tab-content.active {
    display: block; /* Aktif içeriği göster */
    animation: fadeIn 0.5s ease-in-out;
}

/* Geçiş Animasyonu */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
