@layer utilities {
    /* Tabzy Styles */
    .tabzy-wrapper {
        position: relative;
    }

    .tabzy-tabs {
        list-style: none;
        padding: 0;
        display: flex;
        gap: 0px;
        /* gap: 15px; */
        margin-bottom: 20px;
        border-bottom: 2px solid #e0e0e0;
        justify-content: space-between;
        align-items: center;
    }

    .tabzy-tabs li {
        position: relative;
        width: 100%;
        text-align: center;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-bottom: 1rem;
    }

    .tabzy-tabs a {
        text-decoration: none;
        color: #555;
        padding: 10px 20px;
        display: block;
        transition: color 0.3s ease;
        line-height: 1;
        width: 100%;
    }

    .tabzy-tabs a:hover {
        color: var(--primary);
    }

    .tabzy-tabs .tabzy--active a {
        color: black;
    }

    .tabzy-tabs:not(.sliding) .tabzy--active::after {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 2px;
        background: black;
    }

    .active-line {
        position: absolute;
        left: 0;
        bottom: 0;
        height: 2px;
        background: var(--primary);
        transition:
            transform 0.3s ease,
            width 0.3s ease;
    }

    .tabzy-panel {
        padding: 25px;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        background: #fafafa;
    }
}
