/* Tab Navigation Styles */
.dta-business-dashboard .dta-tabs {
    display: flex;
    flex-wrap: wrap; /* Allow tabs to wrap on smaller screens */
    border-bottom: 2px solid #ddd;
    margin-bottom: 0; /* Remove default margin below nav */
    padding-left: 0;
    list-style: none; /* Remove list style if using ul/li */
}

.dta-business-dashboard .dta-tab {
    padding: 10px 15px;
    cursor: pointer;
    border: 2px solid transparent;
    border-bottom: none; /* Reset bottom border */
    margin-bottom: -2px; /* Overlap the bottom border */
    text-decoration: none;
    color: #555;
    font-weight: 500;
    border-radius: 5px 5px 0 0;
    background-color: #f1f1f1; /* Light background for inactive tabs */
    margin-right: 5px; /* Spacing between tabs */
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.dta-business-dashboard .dta-tab:hover {
    background-color: #e9e9e9;
    color: #333;
}

.dta-business-dashboard .dta-tab.active {
    border-color: #ddd;
    border-bottom-color: #f9f9f9; /* Match content background */
    background-color: #f9f9f9; /* Match content background */
    color: #a987c2; /* Accent color for active tab */
    font-weight: 600;
}

/* Tab Content Styles */
.dta-business-dashboard .dta-tab-content-wrapper {
    border: 1px solid #ddd;
    border-top: none; /* Remove top border as tabs handle it */
    background: #f9f9f9;
    border-radius: 0 0 5px 5px; /* Rounded bottom corners */
    margin-bottom: 20px; /* Add space below the tab content area */
}

.dta-business-dashboard .dta-tab-content {
    display: none; /* Hide inactive content */
    padding: 20px;
}

.dta-business-dashboard .dta-tab-content.active {
    display: block; /* Show active content */
}

/* Feedback Notice Styles (copied from previous CSS helper) */
 .dta-notice {
     padding: 15px;
     margin-bottom: 20px;
     border-radius: 6px;
     border: 1px solid transparent;
 }
 .dta-notice-success {
     color: #155724;
     background-color: #d4edda;
     border-color: #c3e6cb;
 }
 .dta-notice-error {
     color: #721c24;
     background-color: #f8d7da;
     border-color: #f5c6cb;
 }