/* Custom Tab Button Styles */
.nav-tabs .nav-link {
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
    background: rgba(102, 102, 102, 0.1);
    color: #666;
    border-radius: 4px; /* Rectangular shape */
    padding: 12px 40px; /* Wide buttons */
    position: relative;
    overflow: hidden;
    min-width: 150px;
    border: 1px solid rgba(102, 102, 102, 0.2);
}

.nav-tabs .nav-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: rgba(102, 102, 102, 0.2);
    color: #333;
}

.nav-tabs .nav-link.active {
    background: linear-gradient(135deg, #f7693c, #c74e45, #7d3785, #582d9f, #3928af) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 105, 60, 0.4);
    border: 1px solid transparent;
}

/* Remove default tab borders */
.nav-tabs {
    border-bottom: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-tabs .nav-link {
        font-size: 14px;
        padding: 10px 30px;
        margin: 0 2px;
        min-width: 120px;
    }
    
    .nav-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .nav-tabs .nav-link {
        font-size: 13px;
        padding: 8px 25px;
        margin: 2px 0;
        min-width: 110px;
    }
}
