/* VTS Custom Auth Styles */

.vts-auth-container {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 20px;
}

.vts-auth-wrapper {
	width: 100%;
	max-width: 480px;
}

.vts-auth-box {
	background: #fff;
	border-radius: 16px;
	padding: 32px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.vts-register-box {
	max-width: 800px;
	margin: 0 auto;
}

.vts-form-section {
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 2px solid #f0f0f0;
}

.vts-form-section:last-of-type {
	border-bottom: none;
	margin-bottom: 20px;
}

.vts-form-section-title {
	font-size: 18px;
	font-weight: 600;
	color: #1a1a1a;
	margin: 0 0 16px;
	padding-bottom: 8px;
	border-bottom: 2px solid #667eea;
}

.vts-auth-header {
	margin-bottom: 24px;
	text-align: center;
}

.vts-auth-header h2 {
	margin: 0 0 6px;
	font-size: 28px;
	color: #1a1a1a;
	font-weight: 700;
}

.vts-auth-subtitle {
	margin: 0;
	font-size: 14px;
	color: #666;
	line-height: 1.5;
}

.vts-form-group {
	margin-bottom: 4px;
}

.vts-form-group label {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
	color: #1a1a1a;
	font-size: 13px;
}

.vts-input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
}

.vts-input-icon {
	position: absolute;
	left: 12px;
	font-size: 16px;
	z-index: 1;
	pointer-events: none;
}

.vts-input {
	width: 100%;
	padding: 10px 12px 10px 40px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 14px;
	box-sizing: border-box;
	transition: all 0.3s ease;
	background: #fff;
}

.vts-input:focus {
	outline: none;
	border-color: #667eea;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.vts-input::placeholder {
	color: #999;
}

/* File input styling */
.vts-file-input-wrapper {
	position: relative;
}

.vts-file-input {
	padding: 10px 12px !important;
	cursor: pointer;
	background: #f9f9f9 !important;
	border: 2px dashed #e0e0e0 !important;
	width: 100%;
	box-sizing: border-box;
}

.vts-file-input:hover {
	border-color: #667eea !important;
	background: #f5f5ff !important;
}

.vts-file-input:focus {
	border-color: #667eea !important;
	border-style: solid !important;
	background: #fff !important;
	outline: none;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.vts-file-input::-webkit-file-upload-button {
	padding: 8px 16px;
	margin-right: 12px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #fff;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 600;
	font-size: 13px;
	transition: all 0.3s ease;
}

.vts-file-input::-webkit-file-upload-button:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
}

/* Firefox file input styling */
.vts-file-input::file-selector-button {
	padding: 8px 16px;
	margin-right: 12px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #fff;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 600;
	font-size: 13px;
	transition: all 0.3s ease;
}

.vts-file-input::file-selector-button:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
}

.vts-toggle-password {
	position: absolute;
	right: 12px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	font-size: 18px;
	color: #666;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vts-toggle-password:hover {
	color: #333;
}

.vts-eye-icon {
	display: inline-block;
}

.vts-field-error {
	display: block;
	margin-top: 4px;
	font-size: 12px;
	color: #dc3232;
	min-height: 16px;
}

.vts-form-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
	gap: 15px;
}

.vts-checkbox-group {
	margin-bottom: 0;
}

.vts-checkbox-label {
	display: flex;
	align-items: center;
	cursor: pointer;
	font-weight: normal;
	margin: 0;
}

.vts-checkbox {
	width: 18px;
	height: 18px;
	margin-right: 10px;
	cursor: pointer;
	accent-color: #667eea;
}

.vts-checkbox-text {
	font-size: 13px;
	color: #666;
}

.vts-password-strength {
	margin-top: 6px;
}

.vts-strength-bar {
	width: 100%;
	height: 4px;
	background: #e0e0e0;
	border-radius: 2px;
	overflow: hidden;
	margin-bottom: 4px;
}

.vts-strength-fill {
	height: 100%;
	width: 0%;
	transition: all 0.3s ease;
	border-radius: 2px;
}

.vts-strength-fill.weak {
	width: 33%;
	background: #dc3232;
}

.vts-strength-fill.medium {
	width: 66%;
	background: #ffa500;
}

.vts-strength-fill.strong {
	width: 100%;
	background: #46b450;
}

.vts-strength-text {
	font-size: 11px;
	color: #666;
}

.vts-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 20px;
	border: none;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}

.vts-btn-primary {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #fff;
	width: 100%;
}

.vts-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.vts-btn-primary:active {
	transform: translateY(0);
}

.vts-btn-block {
	width: 100%;
}

.vts-btn-loader {
	margin-left: 8px;
}

.vts-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none !important;
}

.vts-btn-secondary {
	background: #666;
	color: #fff;
}

.vts-btn-secondary:hover {
	background: #555;
}

.vts-btn-small {
	padding: 6px 12px;
	font-size: 14px;
}

.vts-btn-danger {
	background: #dc3232;
	color: #fff;
}

.vts-btn-danger:hover {
	background: #b52727;
}

.vts-auth-links {
	margin-top: 16px;
	text-align: center;
}

.vts-auth-links p {
	margin: 0;
	font-size: 13px;
	color: #666;
}

.vts-link {
	color: #667eea;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.vts-link:hover {
	color: #764ba2;
	text-decoration: underline;
}

.vts-link-primary {
	color: #667eea;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.vts-link-primary:hover {
	color: #764ba2;
	text-decoration: underline;
}

.vts-alert {
	padding: 12px;
	border-radius: 8px;
	margin-bottom: 16px;
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.vts-alert-icon {
	font-size: 20px;
	flex-shrink: 0;
}

.vts-alert-content {
	flex: 1;
}

.vts-alert-error {
	background: #fff5f5;
	border: 2px solid #feb2b2;
	color: #c53030;
}

.vts-alert-success {
	background: #f0fff4;
	border: 2px solid #9ae6b4;
	color: #22543d;
}

.vts-alert-info {
	background: #ebf8ff;
	border: 2px solid #90cdf4;
	color: #2c5282;
}

.vts-alert p {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
}

.vts-auth-divider {
	display: flex;
	align-items: center;
	text-align: center;
	margin: 16px 0;
}

.vts-auth-divider::before,
.vts-auth-divider::after {
	content: '';
	flex: 1;
	border-bottom: 1px solid #e0e0e0;
}

.vts-auth-divider span {
	padding: 0 16px;
	color: #999;
	font-size: 14px;
}

/* Dashboard Styles */
.vts-dashboard-container {
	padding: 40px 20px;
	max-width: 1400px;
	margin: 0 auto;
}

.vts-dashboard-wrapper {
	width: 100%;
}

.vts-dashboard-layout {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 30px;
}

.vts-dashboard-main {
	min-width: 0;
}

.vts-dashboard-header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 2px solid #eee;
}

.vts-dashboard-header h1 {
	margin: 0;
	font-size: 32px;
}

.vts-dashboard-content {
	display: grid;
	gap: 30px;
}

/* Sidebar */
.vts-dashboard-sidebar {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	padding: 20px;
	height: fit-content;
	position: sticky;
	top: 20px;
}

.vts-sidebar-user {
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
	margin-bottom: 20px;
}

.vts-user-info {
	text-align: center;
}

.vts-user-name {
	font-weight: 600;
	font-size: 16px;
	color: #1a1a1a;
	margin-bottom: 5px;
}

.vts-user-email {
	font-size: 13px;
	color: #666;
}

.vts-sidebar-nav {
	margin-top: 20px;
}

.vts-nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.vts-nav-list li {
	margin-bottom: 5px;
}

.vts-nav-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 15px;
	border-radius: 8px;
	text-decoration: none;
	color: #666;
	transition: all 0.3s ease;
	font-weight: 500;
}

.vts-nav-item:hover {
	background: #f5f5f5;
	color: #667eea;
}

.vts-nav-item.active {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #fff;
}

.vts-nav-item.active .vts-nav-icon {
	filter: brightness(0) invert(1);
}

.vts-nav-icon {
	font-size: 18px;
	width: 20px;
	text-align: center;
}

.vts-nav-text {
	flex: 1;
}

.vts-nav-divider {
	height: 1px;
	background: #eee;
	margin: 15px 0;
}

.vts-nav-logout {
	color: #dc3232;
}

.vts-nav-logout:hover {
	background: #fff5f5;
	color: #dc3232;
}

/* Profile Container */
.vts-profile-container {
	padding: 40px 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.vts-profile-wrapper {
	width: 100%;
}

.vts-profile-header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 2px solid #eee;
}

.vts-profile-header h1 {
	margin: 0;
	font-size: 32px;
}

.vts-profile-content {
	display: grid;
	gap: 30px;
}

.vts-offers-container {
	padding: 40px 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.vts-offers-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 2px solid #eee;
}

.vts-offers-header h1 {
	margin: 0;
	font-size: 32px;
}

.vts-offers-nav {
	display: flex;
	gap: 10px;
	align-items: center;
}

.vts-offers-content {
	display: grid;
	gap: 30px;
}

.vts-dashboard-section,
.vts-dashboard-section,
.vts-profile-section,
.vts-offers-section {
	background: #fff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.vts-dashboard-section h2,
.vts-profile-section h2 {
	margin: 0 0 20px;
	font-size: 24px;
	color: #1a1a1a;
}

.vts-company-data,
.vts-profile-info {
	display: grid;
	gap: 15px;
}

.vts-company-data {
	display: grid;
	gap: 15px;
}

.vts-data-row,
.vts-info-row {
	display: flex;
	padding: 12px 0;
	border-bottom: 1px solid #eee;
	align-items: center;
}

.vts-data-row:last-child,
.vts-info-row:last-child {
	border-bottom: none;
}

.vts-data-row strong,
.vts-info-row strong {
	width: 220px;
	color: #666;
	font-weight: 600;
	flex-shrink: 0;
}

.vts-data-row span,
.vts-info-row span {
	color: #1a1a1a;
	flex: 1;
}

.vts-form-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-bottom: 20px;
}

.vts-section-description {
	color: #666;
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 1.6;
}

.vts-offers-actions {
	margin-bottom: 20px;
}

.vts-table {
	width: 100%;
	border-collapse: collapse;
}

/* Mobile list/card containers – hidden on desktop, shown only in @media (max-width: 768px) */
.vts-table-mobile,
.vts-services-table-mobile {
	display: none !important;
}

.vts-table th,
.vts-table td {
	padding: 12px;
	text-align: left;
	border-bottom: 1px solid #eee;
}

.vts-table th {
	background: #f9f9f9;
	font-weight: 600;
}

.vts-status {
	padding: 4px 12px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
}

.vts-status-draft {
	background: #f0f0f0;
	color: #666;
}

.vts-status-sent {
	background: #e3f2fd;
	color: #1976d2;
}

.vts-status-accepted {
	background: #e8f5e9;
	color: #388e3c;
}

.vts-status-rejected {
	background: #ffebee;
	color: #d32f2f;
}

/* Modal Styles */
.vts-modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	overflow: auto;
}

.vts-modal-content {
	background: #fff;
	margin: 50px auto;
	padding: 30px;
	border-radius: 8px;
	max-width: 600px;
	position: relative;
}

.vts-modal-close {
	position: absolute;
	right: 20px;
	top: 20px;
	font-size: 28px;
	font-weight: bold;
	color: #999;
	cursor: pointer;
}

.vts-modal-close:hover {
	color: #333;
}

.vts-message {
	padding: 15px;
	border-radius: 4px;
	margin-top: 20px;
}

.vts-message.success {
	background: #eafaea;
	border-left: 4px solid #46b450;
	color: #155724;
}

.vts-message.error {
	background: #ffeaea;
	border-left: 4px solid #dc3232;
	color: #721c24;
}

/* Mobile Menu Toggle – in row with header h1 */
.vts-mobile-menu-toggle {
	display: none;
	flex-shrink: 0;
	z-index: 1001;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 12px 16px;
	cursor: pointer;
	font-size: 20px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.vts-mobile-menu-toggle:active {
	transform: scale(0.95);
}

.vts-mobile-menu-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.vts-mobile-menu-overlay.active {
	display: block;
	opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
	.vts-dashboard-layout {
		grid-template-columns: 1fr;
	}
	
	.vts-dashboard-sidebar {
		position: static;
		order: -1;
	}
	
	.vts-sidebar-nav {
		display: flex;
		overflow-x: auto;
		gap: 10px;
		margin-top: 0;
	}
	
	.vts-nav-list {
		display: flex;
		gap: 10px;
		width: 100%;
	}
	
	.vts-nav-list li {
		margin-bottom: 0;
		flex-shrink: 0;
	}
	
	.vts-nav-item {
		white-space: nowrap;
	}
	
	.vts-nav-divider {
		display: none;
	}
}

@media (max-width: 768px) {
	/* Mobile Menu */
	.vts-mobile-menu-toggle {
		display: block;
	}
	
	.vts-dashboard-sidebar {
		position: fixed;
		top: 0;
		left: -100%;
		width: 280px;
		height: 100vh;
		overflow-y: auto;
		z-index: 1000;
		transition: left 0.3s ease;
		box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
	}
	
	.vts-dashboard-sidebar.mobile-open {
		left: 0;
	}
	
	.vts-sidebar-nav {
		display: block;
		overflow: visible;
	}
	
	.vts-nav-list {
		display: block;
		flex-direction: column;
		gap: 0;
	}
	
	.vts-nav-list li {
		margin-bottom: 5px;
	}
	
	.vts-nav-item {
		white-space: normal;
		width: 100%;
	}
	
	.vts-nav-divider {
		display: block;
		margin: 15px 0;
	}
	
	/* Dashboard Container */
	.vts-dashboard-container,
	.vts-profile-container,
	.vts-offers-container,
	.vts-it-offer-container {
		padding: 20px 15px;
		padding-top: 80px;
	}
	
	.vts-dashboard-header,
	.vts-profile-header,
	.vts-offers-header,
	.vts-it-offer-header {
		align-items: center;
		gap: 15px;
		margin-bottom: 20px;
	}
	
	.vts-dashboard-header h1,
	.vts-profile-header h1,
	.vts-offers-header h1,
	.vts-it-offer-header h1 {
		font-size: 24px;
	}
	
	/* Tables: hide on mobile; mobile cards shown via separate @media block below */
	
	.vts-table-mobile-card {
		background: #fff;
		border: 1px solid #e0e0e0;
		border-radius: 8px;
		padding: 15px;
		margin-bottom: 15px;
		box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	}
	
	.vts-table-mobile-card-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 12px;
		padding-bottom: 12px;
		border-bottom: 2px solid #667eea;
	}
	
	.vts-table-mobile-card-title {
		font-weight: 600;
		font-size: 16px;
		color: #1a1a1a;
	}
	
	.vts-table-mobile-card-row {
		display: flex;
		justify-content: space-between;
		padding: 8px 0;
		border-bottom: 1px solid #f0f0f0;
	}
	
	.vts-table-mobile-card-row:last-child {
		border-bottom: none;
	}
	
	.vts-table-mobile-card-label {
		font-weight: 600;
		color: #666;
		font-size: 13px;
	}
	
	.vts-table-mobile-card-value {
		color: #1a1a1a;
		font-size: 14px;
		text-align: right;
	}
	
	.vts-table-mobile-card-actions {
		margin-top: 15px;
		padding-top: 15px;
		border-top: 1px solid #e0e0e0;
		display: flex;
		gap: 10px;
		flex-wrap: wrap;
	}
	
	.vts-table-mobile-card-actions .vts-btn {
		flex: 1;
		min-width: 120px;
	}
	
	/* Form Rows */
	.vts-form-row {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	/* Buttons */
	.vts-btn {
		font-size: 14px;
		padding: 10px 16px;
	}
	
	.vts-btn-small {
		padding: 8px 12px;
		font-size: 13px;
	}
	
	/* Sections */
	.vts-dashboard-section,
	.vts-profile-section,
	.vts-offer-section {
		padding: 20px;
		margin-bottom: 20px;
	}
	
	.vts-dashboard-section h2,
	.vts-profile-section h2,
	.vts-offer-section h2 {
		font-size: 20px;
		margin-bottom: 15px;
	}
	
	/* Sidebar User */
	.vts-sidebar-user {
		text-align: left;
		padding: 15px;
	}
	
	.vts-user-name {
		font-size: 15px;
	}
	
	.vts-user-email {
		font-size: 12px;
	}
	
	/* Positions List */
	.vts-positions-list {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	/* Total Summary Mobile */
	.vts-total-summary {
		background: #f9f9f9;
		padding: 15px;
		border-radius: 8px;
		margin-top: 20px;
	}
	
	.vts-total-summary .vts-total-row {
		display: flex;
		justify-content: space-between;
		padding: 10px 0;
		border-bottom: 1px solid #e0e0e0;
		font-size: 14px;
	}
	
	.vts-total-summary .vts-total-row:last-child {
		border-bottom: none;
	}
	
	.vts-total-summary .vts-total-final {
		font-size: 18px;
		font-weight: 700;
		color: #667eea;
		border-top: 2px solid #667eea;
		padding-top: 15px;
		margin-top: 10px;
	}
	
	/* Offer View */
	.vts-offer-view-container {
		padding: 20px 15px;
		padding-top: 80px;
	}
	
	.vts-offer-view-header {
		align-items: center;
		gap: 15px;
		margin-bottom: 20px;
	}
	
	.vts-offer-view-header h1 {
		font-size: 24px;
	}
	
	.vts-offer-view-nav {
		width: 100%;
	}
	
	.vts-offer-view-nav .vts-btn {
		width: 100%;
	}
	
	/* Info Rows */
	.vts-info-row,
	.vts-data-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
	}
	
	.vts-info-row strong,
	.vts-data-row strong {
		width: 100%;
		margin-bottom: 5px;
	}
	
	/* Actions */
	.vts-offer-actions,
	.vts-offers-actions {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}
	
	.vts-offer-actions .vts-btn,
	.vts-offers-actions .vts-btn {
		width: 100%;
	}
	
	/* Status Badges */
	.vts-status {
		display: inline-block;
		padding: 4px 10px;
		font-size: 11px;
	}
	
	/* Alert */
	.vts-alert {
		padding: 15px;
		flex-direction: column;
		gap: 10px;
	}
	
	.vts-alert-icon {
		font-size: 24px;
	}
	
	/* Modal */
	.vts-modal-content {
		margin: 20px;
		padding: 20px;
		max-width: calc(100% - 40px);
	}
}

@media (max-width: 768px) {
	/* Hide desktop tables, show mobile cards */
	.vts-table,
	.vts-services-table {
		display: none !important;
	}
	
	.vts-table-mobile,
	.vts-services-table-mobile {
		display: block !important;
		visibility: visible !important;
		height: auto !important;
		min-height: 0 !important;
		overflow: visible !important;
		margin: 0 0 15px 0 !important;
		padding: 0 !important;
		position: static !important;
		left: auto !important;
		width: auto !important;
		pointer-events: auto !important;
		opacity: 1 !important;
	}
	
	.vts-dashboard-section .vts-offers-list {
		display: none !important;
	}
	
	.vts-services-section .vts-services-table-mobile {
		margin-top: 12px;
	}
	
	.vts-services-section .vts-services-table-mobile .vts-table-mobile-card {
		margin-bottom: 12px;
	}
}

@media (max-width: 480px) {
	.vts-dashboard-container,
	.vts-profile-container,
	.vts-offers-container,
	.vts-it-offer-container,
	.vts-offer-view-container {
		padding: 15px 10px;
		padding-top: 70px;
	}
	
	.vts-dashboard-section,
	.vts-profile-section,
	.vts-offer-section {
		padding: 15px;
	}
	
	.vts-dashboard-header h1,
	.vts-profile-header h1,
	.vts-offers-header h1,
	.vts-it-offer-header h1,
	.vts-offer-view-header h1 {
		font-size: 20px;
	}
	
	.vts-mobile-menu-toggle {
		padding: 10px 14px;
		font-size: 18px;
	}
	
	.vts-dashboard-sidebar {
		width: 100%;
	}
	
	.vts-table-mobile-card {
		padding: 12px;
	}
	
	.vts-table-mobile-card-title {
		font-size: 14px;
	}
	
	.vts-table-mobile-card-label,
	.vts-table-mobile-card-value {
		font-size: 12px;
	}
}

/* === Desktop: force-hide mobile lists (end of file = wins over theme/other CSS) === */
@media (min-width: 769px) {
	.vts-table-mobile,
	.vts-services-table-mobile {
		display: none !important;
	}
	.vts-dashboard-container .vts-table-mobile,
	.vts-dashboard-container .vts-dashboard-section .vts-table-mobile,
	.vts-offer-view-container .vts-services-table-mobile,
	.vts-offer-view-container .vts-services-section .vts-services-table-mobile,
	.vts-table-mobile,
	.vts-services-table-mobile {
		display: none !important;
		visibility: hidden !important;
		height: 0 !important;
		min-height: 0 !important;
		overflow: hidden !important;
		margin: 0 !important;
		padding: 0 !important;
		position: absolute !important;
		left: -9999px !important;
		width: 1px !important;
		pointer-events: none !important;
		opacity: 0 !important;
	}
}

