.tab-section {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    padding: 30px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
}

.nav-tabs {
    border-bottom: 1px solid #e0e0e0 !important;
    margin-bottom: 10px !important;
}

.nav-link {
    font-weight: 500 !important;
    padding: 8px 16px !important;
    border-radius: 4px !important;
    transition: all 0.3s !important;
}
  
.nav-link:hover {
    background-color: rgba(26, 115, 232, 0.1);
}  
    
.nav-tabs .nav-link {
    color: var(--light-text) !important;
    border: none !important;
    padding: 12px 20px !important;
    border-radius: 8px 8px 0 0 !important;
    font-size: 17px;
}

.nav-tabs .nav-link.active {
    color: var(--primary-color) !important;
    background-color: white !important;
    border-bottom: 2px solid var(--primary-color) !important;
}

.nav-tabs .nav-link:hover {
    border: none !important;
    background-color: rgba(26, 115, 232, 0.05) !important;
}

.tab-content {
    min-height: 400px;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    margin-top: 5px;
    color: var(--primary-color);
    text-decoration: none;
    gap: 5px;
    float: right;
}

.view-all-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
	.tab-section {
		padding: 10px;
	}
	
	.nav-tabs .nav-link {
		padding: 10px 15px;
		font-size: 0.9rem;
	}