﻿/* Altını çizme */
.underline-white {
    color: white; /* Normal yazı rengi */
    border-bottom: 2px solid white; /* Alt çizgi: beyaz */
    text-decoration: none; /* Text underline kapatıldı */
    transition: color 0.3s, border-color 0.3s; /* Geçiş animasyonu */
    cursor: pointer; /* Hover'da el simgesi */
}

    .underline-white:hover {
        color: #ffc107; /* Hover yazı rengi */
        border-bottom: 2px solid #ffc107; /* Hover alt çizgi rengi */
    }
.tab-menu {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

    .tab-menu a {
        background-color: rgba(255, 255, 255, 0.06);
        padding: 12px 20px;
        border-radius: 6px;
        font-weight: 600;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        border-left: 4px solid transparent;
    }

        .tab-menu a:hover,
        .tab-menu a:focus {
            color: #ffc107;
            background-color: rgba(255, 193, 7, 0.1);
            border-left-color: #ffc107;
        }

        .tab-menu a.active {
            color: #ffc107;
            background-color: rgba(255, 193, 7, 0.15);
            border-left-color: #ffc107;
        }

.margin-top-lg {
    margin-top: 110px;
}
@media (max-width: 768px) {
    .mt-mobile {
        margin-top: 32px; /* ihtiyacına göre 24px, 40px de olabilir */
    }
}


