/**
 * NTV Tabtastic - Minimal Default Styles
 */

.ntv-tabs-wrapper {
	width: 100%;
}

/* Tab Navigation */
.ntv-tabs-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	border-bottom: 1px solid #ddd;
}

.ntv-tabs-nav button {
	background: transparent;
	border: none;
	border-bottom: 2px solid transparent;
	padding: 12px 20px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	color: #333;
	transition: all 0.3s ease;
	outline: none;
	position: relative;
}

.ntv-tabs-nav button:hover {
	color: #0073aa;
	background-color: rgba(0, 115, 170, 0.05);
}

.ntv-tabs-nav button:focus {
	outline: 2px solid #0073aa;
	outline-offset: -2px;
}

.ntv-tabs-nav button.ntv-active {
	color: #0073aa;
	border-bottom-color: #0073aa;
	font-weight: 600;
}

/* Tab Content */
.ntv-tabs-content {
	margin-top: 0;
	padding: 20px 0;
}

.ntv-tab-panel {
	display: none;
}

.ntv-tab-panel.ntv-active {
	display: block;
}

/* Sub-tabs */
.ntv-sub-tabs {
	margin-top: 20px;
}

.ntv-sub-tabs .ntv-tabs-nav {
	border-bottom: 1px solid #ccc;
}

.ntv-sub-tabs .ntv-tabs-nav button {
	font-size: 14px;
	padding: 10px 16px;
}

.ntv-sub-tabs .ntv-tabs-content {
	padding: 15px 0;
}

/* Responsive */
@media (max-width: 768px) {
	.ntv-tabs-nav {
		flex-direction: column;
		border-bottom: none;
	}

	.ntv-tabs-nav button {
		width: 100%;
		text-align: left;
		border-bottom: 1px solid #ddd;
		border-left: 2px solid transparent;
	}

	.ntv-tabs-nav button.ntv-active {
		border-bottom-color: #ddd;
		border-left-color: #0073aa;
	}

	.ntv-tabs-content {
		padding: 15px 0;
	}
}

/* Accessibility - Screen reader only */
.ntv-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}


