/* Styles for Jobs Tab Structure */
.jobs-tabs-section {
    margin-top: 50px;
    margin-bottom: 50px;
}
.tabs-navigation {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
}

.tab-button {
    background-color: transparent;
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #6c757d;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin: 0 5px;
}

.tab-button:hover {
    color: var(--ubru-pink); /* Assuming --ubru-pink is defined in main.css */
    border-bottom-color: var(--ubru-pink-light); /* Assuming --ubru-pink-light is defined */
}

.tab-button.active {
    color: white;
    border-bottom-color: var(--ubru-pink);
}

.tab-content {
    display: none;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .tabs-navigation {
        flex-wrap: wrap;
    }
    .tab-button {
        flex: 1 1 auto; /* Allow buttons to wrap and take available space */
        margin: 5px;
        font-size: 1rem;
        padding: 10px 15px;
    }
}