/* Tabs */
.custom-tabs {
    background-color: #f8f9fa; /* light gray background for contrast */
    border-radius: 0.5rem 0.5rem 0 0; /* rounded top corners */
    padding: 0.5rem;
    border: 0px solid #dee2e6;
    border-left: 5px solid #dee2e6;
    border-right: 5px solid #dee2e6;
    border-top: 5px solid #dee2e6;
}

.custom-tabs .nav-link {
    border: none; /* remove default border */
    color: #555;
    margin: 0 0.25rem;
    border-radius: 0.4rem;
    transition: all 0.2s ease;
    font-family: 'Dosis', sans-serif;
    font-weight: 600;
}

.custom-tabs .nav-link:hover {
    background-color: #e9ecef;
    color: #000;
}

.custom-tabs .nav-link.active {
    background-color: #ff671b; /* Bootstrap primary */
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Content */
.custom-tab-content {
    border: 5px solid #dee2e6;
    border-top: none; /* connect nicely with tabs */
    border-radius: 0 0 0.5rem 0.5rem;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
