/* VTS Custom Auth Styles */
.vts-auth-page header{
	background: #00000095;
}
.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: 20px;
}

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

/* Form controls – inputs, selects */
.vts-form-control {
	display: block;
	width: 100%;
	padding: 12px 14px;
	font-size: 15px;
	line-height: 1.5;
	color: #1a1a1a;
	background: #fff;
	border: 1px solid #dee2e6;
	border-radius: 8px;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.vts-form-control:focus {
	outline: none;
	border-color: #667eea;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}
.vts-form-control::placeholder {
	color: #6c757d;
}
.vts-form-control:disabled {
	background: #f8f9fa;
	cursor: not-allowed;
}
select.vts-form-control {
	appearance: none;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 14px;
	padding-right: 40px;
}

.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;
	padding-bottom: 50px;
}

.vts-dashboard-main {
	min-width: 0;
	padding-top: 40px;;
}

.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 nu trebuie niciodată fixed/scroll (sticky) */
.vts-dashboard-header.fixedHeader,
.vts-dashboard-header.scrollHeader {
	position: static !important;
	top: auto !important;
}

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

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

/* Dashboard Services Grid – 2 columns / boxes */
.vts-dashboard-services-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.vts-service-box {
	display: block;
	text-decoration: none;
	color: inherit;
	border: 2px solid #e0e0e0;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.vts-service-box:hover {
	border-color: #667eea;
	box-shadow: 0 4px 16px rgba(102, 126, 234, 0.2);
}

.vts-service-box-inner {
	padding: 28px;
}

.vts-service-icon {
	font-size: 36px;
	display: block;
	margin-bottom: 16px;
}

.vts-service-box h2 {
	margin: 0 0 12px;
	font-size: 22px;
	color: #1a1a1a;
}

.vts-service-box p {
	margin: 0 0 20px;
	font-size: 14px;
	line-height: 1.6;
	color: #666;
}

.vts-service-link {
	font-size: 14px;
	font-weight: 600;
	color: #667eea;
}

.vts-service-box:hover .vts-service-link {
	text-decoration: underline;
}

/* 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;
}

/* Make theme header non-fixed on VTS dashboard pages */
body.vts-dashboard-page header.header-style1,
body.vts-dashboard-page header.header-style1.fixedHeader,
body.vts-dashboard-page header.header-style1.scrollHeader {
	position: static !important;
	top: auto !important;
}

/* 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;
}

/* Kundenportal product filter */
.vts-product-filter-wrap {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}
.vts-product-filter-wrap input {
	max-width: 320px;
}
.vts-product-filter-count {
	font-size: 13px;
	color: #666;
}

/* Kundenportal product search (dynamic add) */
.vts-product-search-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
}
.vts-search-input-wrap {
	position: relative;
	flex: 1;
	min-width: 200px;
}
.vts-search-input-wrap .vts-form-control {
	padding-right: 40px;
}
.vts-search-clear {
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	width: 28px;
	height: 28px;
	padding: 0;
	font-size: 20px;
	line-height: 1;
	color: #6c757d;
	background: transparent;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	transition: color 0.2s, background 0.2s;
}
.vts-search-clear:hover {
	color: #1a1a1a;
	background: #e9ecef;
}
.vts-search-input-wrap .vts-search-clear.visible {
	display: flex;
}
.vts-product-search-wrap #vts-product-search {
	flex: 1;
	min-width: 200px;
}
.vts-product-search-wrap #vts-product-search,
.vts-product-search-wrap .vts-form-control {
	padding: 10px 14px;
	font-size: 14px;
}
.vts-search-input-wrap #vts-product-search {
	padding-right: 42px;
}
.vts-product-search-wrap #vts-product-category {
	min-width: 160px;
}
.vts-help-text {
	font-size: 13px;
	color: #666;
	margin-bottom: 12px;
}
.vts-search-results {
	margin-bottom: 20px;
	min-height: 40px;
}
.vts-search-results .vts-search-results-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.vts-search-result-item {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	padding: 8px 12px;
	background: #f8f9fa;
	border-radius: 8px;
	border: 1px solid #e9ecef;
}
.vts-result-title {
	flex: 1;
	min-width: 140px;
	font-weight: 500;
	font-size: 14px;
}
.vts-result-id {
	font-size: 12px;
	color: #6c757d;
	min-width: 70px;
}
.vts-result-cat {
	font-size: 12px;
	color: #adb5bd;
}
.vts-result-price {
	font-weight: 600;
	color: #1a1a1a;
}
.vts-result-qty-wrap {
	display: flex;
	align-items: center;
}
.vts-result-qty {
	width: 56px;
	padding: 6px 8px;
	font-size: 13px;
	text-align: center;
	border: 1px solid #dee2e6;
	border-radius: 6px;
	transition: border-color 0.2s;
}
.vts-result-qty:focus {
	outline: none;
	border-color: #667eea;
}
.vts-btn-add {
	width: 36px;
	height: 36px;
	padding: 0;
	font-size: 20px;
	line-height: 1;
	font-weight: 600;
	border-radius: 6px;
	background: #0d6efd;
	color: #fff;
	border: none;
	cursor: pointer;
	flex-shrink: 0;
	margin-left: auto;
}
.vts-btn-add:hover {
	background: #0b5ed7;
}
.vts-selected-products {
	margin-top: 24px;
	margin-bottom: 24px;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 10px;
	border: 1px solid #e9ecef;
}
.vts-selected-products h4 {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 600;
	color: #1a1a1a;
}
.vts-selected-products .vts-quantity-input {
	width: 80px;
	padding: 8px 10px;
	font-size: 14px;
	text-align: center;
	border: 1px solid #dee2e6;
	border-radius: 6px;
}
.vts-selected-products p {
	margin: 8px 0;
	font-size: 14px;
}
#vts-submit-offer-btn {
	margin-top: 20px;
}
#vts-no-products-msg {
	margin: 16px 0;
	padding: 14px 18px;
	border-radius: 8px;
	background: #e7f1ff;
	border: 1px solid #b6d4fe;
	color: #084298;
	font-size: 14px;
}
.vts-notice-error {
	background: #f8d7da;
	border-color: #f5c2c7;
	color: #842029;
	margin-bottom: 16px;
	padding: 14px 18px;
	border-radius: 8px;
	border: 1px solid;
}
.vts-notice-warning {
	background: #fff3cd;
	border: 1px solid #ffecb5;
	color: #664d03;
	margin: 12px 0;
	padding: 12px 16px;
	border-radius: 8px;
	font-size: 14px;
}
.vts-services-wrap {
	margin-top: 20px;
	padding: 16px 0;
	border-top: 1px solid #e9ecef;
}
.vts-services-wrap h4 {
	margin: 0 0 14px;
	font-size: 15px;
	font-weight: 600;
}
.vts-service-group {
	margin-bottom: 14px;
}
.vts-service-group > label {
	display: block;
	font-weight: 600;
	font-size: 13px;
	margin-bottom: 6px;
}
.vts-radio-group {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
}
.vts-radio-label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: normal;
	cursor: pointer;
}
.vts-rate-fixed {
	color: #6c757d;
	font-size: 14px;
}
.vts-totals-wrap {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid #dee2e6;
}
.vts-totals-wrap p {
	margin: 6px 0;
	font-size: 14px;
}
.vts-totals-wrap .total-brut,
.vts-totals-wrap p:last-of-type {
	font-weight: 700;
	margin-top: 10px;
	padding-top: 8px;
	border-top: 2px solid #333;
}

/* Kundenportal form sections */
.vts-dashboard-section h3 {
	margin: 28px 0 16px;
	padding-bottom: 8px;
	font-size: 18px;
	font-weight: 600;
	color: #1a1a1a;
	border-bottom: 2px solid #eee;
}
.vts-dashboard-section h3:first-child {
	margin-top: 0;
}

.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) {
	.vts-dashboard-services-grid {
		grid-template-columns: 1fr;
	}

	/* 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-header.active{
		z-index: 999999;
		position: fixed;
        top: 25px;
        width: 100%;
        left: 0;
	}

	.vts-dashboard-header.active h1 {
		display: none;
	}
	
	.vts-dashboard-sidebar.mobile-open {
		left: 0;
		z-index: 99999;
	}
	
	.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;
	}
	
	.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;
	}
}

