/* Shared Tab Styling - Used across Portal pages */
/* DO NOT modify individual page tab styles - modify here instead */

/* Tab Container */
.tabs-container {
    background: white;
    padding: 0 32px;
    border-bottom: 1px solid #e5e7eb;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
}

.tabs-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.tabs-search {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.tabs {
    display: flex;
    gap: 4px;
    margin-bottom: -1px;
}

.tabs-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 8px;
}

/* Tab Button - Clean Design with Bottom Border Only */
.tab {
    background: transparent !important;
    border: none !important;
    border-bottom: 3px solid transparent !important;
    padding: 12px 24px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #6b7280 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    outline: none !important;
}

.tab:hover {
    color: #111827 !important;
    border-bottom-color: #d1d5db !important;
}

.tab.active {
    color: #3b82f6 !important;
    font-weight: 600 !important;
    border-bottom-color: #3b82f6 !important;
}

/* Tab Content Container */
.tab-content {
    padding: 8px;
    background: #ffffff;
    overflow-y: auto;
}

/* Main Content Container - for pages using tab layout */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Tab Header (for additional content like filters) */
.tab-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 32px;
    border-bottom: 1px solid #e5e7eb;
    background: white;
}

.tab-filters {
    display: flex;
    gap: 12px;
    margin-left: auto;
    margin-right: 12px;
}

