.dual-tabs-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Sol ve sağ buton alanları */
.dual-tabs-left,
.dual-tabs-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 0 0 150px;
}

.tab-button {
    padding: 10px 12px;
    background-color: #f2f2f2;
    border: 1px solid #ccc;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;       /* Tek satıra zorlar */
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background-color 0.3s;
    font-size: 14px;

}

.tab-button:hover,
.tab-button.active {
    background-color: #dcdcdc;
}

/* Ortadaki içerik kutusu */
.dual-tabs-center {
    flex: 1;
    border: 5px solid #1d2327;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
	height:330px;

}

/* Sekme içeriği */
.tab-content {
    display: none;
    width: 100%;
}

.tab-content.active {
    display: block;
}

/* İçerik yapısı: Görsel + Metin */
.dual-tabs-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-sizing: border-box;
}

/* Görsel Alanı */
.dual-tabs-image {
   
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
}

.dual-tabs-image img {
    width: 300px;
    height: 200px;
    object-fit: cover;
}

/* Metin Alanı */
.dual-tabs-text {
    flex: 1;
    padding: 20px;
    display: flex;
    align-items: center;
    line-height: 1.8;
    text-align: left;
	
}
