/* ====================== */
/* TAB VISIBILITY FIXES */
/* ====================== */

/* Inactive tabs styling */
.urm-tab:not(.active) {
    background-color: #f0f0f0 !important;
    color: #555 !important;
    border: 1px solid #ddd !important;
    border-bottom: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Active tab styling */
.urm-tab.active {
    background-color: #2271b1 !important;
    color: white !important;
    border: 1px solid #2271b1 !important;
    border-bottom: none !important;
}

/* Tab container */
.urm-tabs {
    border-bottom: 1px solid #ddd !important;
    margin-bottom: 0 !important;
}

/* Tab content area */
.urm-tab-content {
    border: 1px solid #ddd !important;
    border-top: none !important;
    padding: 20px !important;
    background: white !important;
}

/* Hover effect for inactive tabs */
.urm-tab:not(.active):hover {
    background-color: #e0e0e0 !important;
    color: #333 !important;
}