.nav-tabs {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.nav-tabs-items {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-tabs-item {
    margin-bottom: -1px;
}

.nav-tabs-item a {
    display: block;
    padding: 0.75rem 1rem;
    color: #4b5563;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    white-space: nowrap;
}

.nav-tabs-item a:hover {
    color: #1a1a1a;
}

.nav-tabs-item a.active {
    color: #3b82f6;
    border-bottom-color: #3b82f6;
}

@media (max-width: 640px) {
    .nav-tabs-items {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-tabs-item {
        width: 100%;
        text-align: center;
    }

    .nav-tabs-item a {
        padding: 0.5rem 1rem;
        border-bottom: none;
        border-left: 2px solid transparent;
    }

    .nav-tabs-item a.active {
        background: #f3f4f6;
        border-bottom: none;
        border-left: 2px solid #3b82f6;
    }
}

/* Container for tabs with action buttons */
.nav-tabs-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.create-listing-button {
    display: inline-block;
    background: linear-gradient(to right, #2c2c2c, #4a4a4a);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
}

.create-listing-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 640px) {
    .nav-tabs-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .create-listing-button {
        width: 100%;
    }
} 