/* Custom Tab Styles */
.nav-tabs.custom-tabs {
    border-bottom: 1px solid #ced4da;
    /* Match container border */
}

.nav-tabs.custom-tabs .nav-link {
    border: 1px solid transparent;
    border-bottom: none;
    color: #6c757d;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    margin-right: 2px;
    border-radius: 0.25rem 0.25rem 0 0;
}

.nav-tabs.custom-tabs .nav-link:hover {
    color: #0d6efd;
    border-color: #e9ecef #e9ecef #dee2e6;
    background-color: #f8f9fa;
}

.nav-tabs.custom-tabs .nav-link.active {
    color: #0d6efd;
    background-color: #e9ecef;
    /* Match block-container bg */
    border-color: #ced4da #ced4da #e9ecef;
    /* Top/Side borders match container, Bottom transparent/same as bg */
    font-weight: 700;
}

/* Badges in tabs */
.nav-tabs.custom-tabs .nav-link .badge {
    transition: all 0.2s;
}

.nav-tabs.custom-tabs .nav-link.active .badge {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Blocks Container */
.block-container {
    background-color: #e9ecef;
    /* Gray-200 */
    border: 1px solid #ced4da;
    border-radius: 0 0 0.375rem 0.375rem;
    border-top: none;
}

/* Card Hover Effects */
.card {
    transition: transform 0.2s, box-shadow 0.2s;
}

/* Utilities */
.object-fit-cover {
    object-fit: cover;
}