﻿
.custom-tab-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 2px solid #d3d3d3;
    padding: 10px 0;
    overflow-x: auto;
}


.custom-tab {
    font-size: 15px;
    font-weight: bold;
    color: #6c757d;
    text-decoration: none;
    padding: 10px 15px;
    position: relative;
    transition: color 0.3s ease-in-out;
    white-space: nowrap; /* Uzun metinlerin taşmasını engeller */
    cursor: pointer;
}

  
    .custom-tab.active {
        color: #000;
    }

   
    .custom-tab::after {
        content: "";
        width: 0;
        height: 3px;
        background-color: #f18330;
        position: absolute;
        left: 0;
        bottom: -10px;
        transition: width 0.3s ease-in-out;
    }

    /* Aktif Sekmenin Alt Çizgisi */
    .custom-tab.active::after {
        width: 100%;
    }

.custom-tab-content {
    display: none;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
    margin-top: 10px;
}

    .custom-tab-content.active {
        display: block;
    }


@media (max-width: 768px) {
    .custom-tab-container {
        overflow-x: auto;
        white-space: nowrap;
    }

    .custom-tab {
        padding: 10px;
    }
}
