.tab-container {
    text-align: center;
    font-family: Arial, sans-serif;
    position: relative;
}

.tabs {
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center; 
    margin-bottom: 20px;
    overflow-x: auto; 
}

.tab-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 20px;
    margin: 0 10px;
    position: relative;
    transition: transform 0.3s ease;
}

.tab-button img {
    max-width: 100px;
    height: auto;
    transition: filter 0.3s ease;
}

.tab-button:hover img, .tab-button.active-tab img {
    filter: invert(100%);
}

.tab-button:not(:last-child)::after {
    content: '→';
    position: absolute;
    top: 50%; 
    right: -30px; 
    font-size: 36px; 
    color: #182b37;
    transform: translateY(-60%); 
    transition: color 0.3s ease;
    display: block; 
}

.tab-content {
    display: none;
    text-align: left;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.active-tab {
    font-weight: bold;
    color: #007bff;
}

.tab-nav-arrow {
    display: none; 
}

@media (max-width: 768px) {
	 .tab-container {
        height: 630px; 
        overflow-y: auto; 
    }
	
    .tabs {
        justify-content: flex-start;
    }

    .tab-button:not(:last-child)::after {
        display: none; 
    }

    .tab-nav-arrow {
        display: block; 
        position: absolute;
        top: 25%;
        background-color: #6ca2b4;
        color: white;
        border: none;
        padding: 15px;
        cursor: pointer;
        z-index: 10;
        transform: translateY(-50%);
    }

    .tab-nav-arrow.left-arrow {
        left: 10px;
    }

    .tab-nav-arrow.right-arrow {
        right: 10px;
    }
}
