/* Tab Styles für VermieterBox - GRADIENT NUR UNTER INAKTIVEN TABS */

.tab-section {
    position: relative;
}

.tab-container {
    display: inline-flex;
    position: relative;
}

.tab-button {
    padding: 10px 20px;
    background: transparent;
    border: none;
    color: #718096;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

/* Inaktiver Tab mit Gradient-Linie */
.tab-button:not(.active) {
    position: relative;
}

.tab-button:not(.active)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(102, 126, 234, 0.6) 0%,
        rgba(118, 75, 162, 0.6) 50%,
        rgba(102, 126, 234, 0.6) 100%);
}

.tab-button:hover {
    color: #4a5568;
}

/* Aktiver Tab - OHNE Linie */
.tab-button.active {
    color: #667eea;
    background: white;
    border-bottom: 2px solid transparent;
}

/* Gradient-Linien links und rechts der Tabs */
.tab-container::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -200px;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(102, 126, 234, 0.3) 50%,
        rgba(102, 126, 234, 0.6) 100%);
}

.tab-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -200px;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(102, 126, 234, 0.6) 0%,
        rgba(118, 75, 162, 0.3) 50%,
        transparent 100%);
}