:root {
  --nexus-primary: #2563eb;
  --nexus-primary-hover: #1d4ed8;
  --nexus-primary-light: #3b82f6;
  --nexus-primary-subtle: #eff6ff;
  --nexus-accent: #0ea5e9;
  --nexus-accent-hover: #0284c7;
  --nexus-white: #ffffff;
  --nexus-gray-50: #f8fafc;
  --nexus-gray-100: #f1f5f9;
  --nexus-gray-200: #e2e8f0;
  --nexus-gray-300: #cbd5e1;
  --nexus-gray-400: #94a3b8;
  --nexus-gray-500: #64748b;
  --nexus-gray-600: #475569;
  --nexus-gray-700: #334155;
  --nexus-gray-800: #1e293b;
  --nexus-gray-900: #0f172a;
  --nexus-success: #10b981;
  --nexus-warning: #f59e0b;
  --nexus-error: #ef4444;
  --nexus-info: #3b82f6;
  --nexus-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --nexus-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --nexus-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --nexus-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --nexus-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --nexus-radius-sm: 6px;
  --nexus-radius: 8px;
  --nexus-radius-md: 12px;
  --nexus-radius-lg: 16px;
  --nexus-radius-xl: 24px;
  --nexus-radius-full: 9999px;
  --nexus-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --nexus-font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --nexus-space-1: 4px;
  --nexus-space-2: 8px;
  --nexus-space-3: 12px;
  --nexus-space-4: 16px;
  --nexus-space-5: 20px;
  --nexus-space-6: 24px;
  --nexus-space-8: 32px;
  --nexus-space-10: 40px;
  --nexus-space-12: 48px;
  --nexus-transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --nexus-transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --nexus-transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --btn-height-xs: 28px;
  --btn-height-sm: 34px;
  --btn-height-md: 38px;
  --btn-height-lg: 44px;
  --btn-height-xl: 48px;
  --btn-padding-xs: 0 10px;
  --btn-padding-sm: 0 12px;
  --btn-padding-md: 0 16px;
  --btn-padding-lg: 0 22px;
  --btn-padding-xl: 0 28px;
  --btn-font-xs: 12px;
  --btn-font-sm: 13px;
  --btn-font-md: 14px;
  --btn-font-lg: 15px;
  --input-height-xs: 24px;
  --input-height-sm: 28px;
  --input-height-md: 32px;
  --input-height-lg: 36px;
  --input-padding-xs: 0 8px;
  --input-padding-sm: 0 10px;
  --input-padding-md: 0 12px;
  --input-padding-lg: 0 14px;
  --input-font-sm: 12px;
  --input-font-md: 13px;
  --input-font-lg: 14px;
  --primary: var(--nexus-primary);
  --btn-primary: var(--nexus-primary);
}

body[data-path] {
  background: linear-gradient(135deg, var(--nexus-gray-50) 0%, var(--nexus-white) 100%);
  min-height: 100vh;
}

.page-content-wrapper h1, .page-content-wrapper h2, .page-content-wrapper h3, .page-content-wrapper h4, .page-content-wrapper h5, .page-content-wrapper h6 {
  font-family: var(--nexus-font-sans);
  font-weight: 700;
  color: var(--nexus-gray-900);
  letter-spacing: -0.025em;
}
.page-content-wrapper h1 {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.page-content-wrapper p {
  color: var(--nexus-gray-600);
  line-height: 1.6;
}

.btn {
  font-family: var(--nexus-font-sans);
  font-weight: 600;
  border-radius: var(--nexus-radius-sm);
  transition: all var(--nexus-transition);
  border: none;
  cursor: pointer;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px;
  white-space: nowrap;
  vertical-align: middle;
  text-decoration: none;
  line-height: normal;
  text-align: center;
  box-sizing: border-box;
  height: var(--btn-height-md);
  padding: 0 16px !important;
  font-size: var(--btn-font-md);
}
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn svg, .btn .icon, .btn i {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.btn.btn-xs {
  height: var(--btn-height-xs);
  padding: 0 10px !important;
  font-size: var(--btn-font-xs);
  border-radius: 4px;
}
.btn.btn-xs svg, .btn.btn-xs .icon, .btn.btn-xs i {
  width: 12px;
  height: 12px;
}
.btn.btn-sm {
  height: var(--btn-height-sm);
  padding: 0 12px !important;
  font-size: var(--btn-font-sm);
}
.btn.btn-md {
  height: var(--btn-height-md);
  padding: 0 16px !important;
  font-size: var(--btn-font-md);
}
.btn.btn-lg {
  height: var(--btn-height-lg);
  padding: 0 22px !important;
  font-size: var(--btn-font-lg);
}
.btn.btn-lg svg, .btn.btn-lg .icon, .btn.btn-lg i {
  width: 16px;
  height: 16px;
}
.btn.btn-xl {
  height: var(--btn-height-xl);
  padding: 0 28px !important;
  font-size: var(--btn-font-lg);
}
.btn.btn-xl svg, .btn.btn-xl .icon, .btn.btn-xl i {
  width: 18px;
  height: 18px;
}
.btn.btn-primary {
  background: var(--nexus-primary) !important;
  border: none !important;
  color: var(--nexus-white) !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.btn.btn-primary:hover {
  background: var(--nexus-primary-hover) !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.btn.btn-primary:active {
  background: var(--nexus-primary-hover) !important;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.btn.btn-primary:focus {
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.3);
}
.btn.btn-default, .btn.btn-secondary {
  background: var(--nexus-white) !important;
  border: 1px solid var(--nexus-gray-200) !important;
  color: var(--nexus-gray-700) !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.btn.btn-default:hover, .btn.btn-secondary:hover {
  background: var(--nexus-gray-50) !important;
  border-color: var(--nexus-gray-300) !important;
  color: var(--nexus-gray-800) !important;
}
.btn.btn-default:active, .btn.btn-secondary:active {
  background: var(--nexus-gray-100) !important;
}
.btn.btn-light {
  background: var(--nexus-gray-100) !important;
  border: 1px solid var(--nexus-gray-200) !important;
  color: var(--nexus-gray-700) !important;
}
.btn.btn-light:hover {
  background: var(--nexus-gray-200) !important;
  color: var(--nexus-gray-800) !important;
}
.btn.btn-danger {
  background: var(--nexus-error) !important;
  border: none !important;
  color: var(--nexus-white) !important;
}
.btn.btn-danger:hover {
  background: #dc2626 !important;
}
.btn.btn-danger:focus {
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.3);
}
.btn.btn-success {
  background: var(--nexus-success) !important;
  border: none !important;
  color: var(--nexus-white) !important;
}
.btn.btn-success:hover {
  background: #059669 !important;
}
.btn.btn-success:focus {
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3);
}
.btn.btn-link {
  background: transparent !important;
  border: none !important;
  color: var(--nexus-primary) !important;
  box-shadow: none !important;
  padding: 0 4px;
  height: auto;
}
.btn.btn-link:hover {
  color: var(--nexus-primary-hover) !important;
  text-decoration: underline;
}
.btn.btn-icon {
  padding: 0;
  width: var(--btn-height-md);
}
.btn.btn-icon.btn-xs {
  width: var(--btn-height-xs);
}
.btn.btn-icon.btn-sm {
  width: var(--btn-height-sm);
}
.btn.btn-icon.btn-lg {
  width: var(--btn-height-lg);
}
.btn.btn-icon.btn-xl {
  width: var(--btn-height-xl);
}

.btn-primary-dark,
.btn-primary-light {
  height: var(--btn-height-md);
  padding: var(--btn-padding-md);
  font-size: var(--btn-font-md);
}

.btn-group {
  display: inline-flex;
}
.btn-group .btn {
  border-radius: 0;
}
.btn-group .btn:first-child {
  border-radius: var(--nexus-radius-sm) 0 0 var(--nexus-radius-sm);
}
.btn-group .btn:last-child {
  border-radius: 0 var(--nexus-radius-sm) var(--nexus-radius-sm) 0;
}
.btn-group .btn:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.form-control {
  font-family: var(--nexus-font-sans);
  background: var(--nexus-white);
  border: 1px solid var(--nexus-gray-200);
  border-radius: var(--nexus-radius-sm);
  color: var(--nexus-gray-900);
  transition: all var(--nexus-transition-fast);
  width: 100%;
  box-sizing: border-box;
  height: var(--input-height-md);
  padding: var(--input-padding-md);
  font-size: var(--input-font-md);
  line-height: 1.4;
}
.form-control::placeholder {
  color: var(--nexus-gray-400);
  font-size: inherit;
}
.form-control:hover:not(:disabled):not(:focus) {
  border-color: var(--nexus-gray-300);
}
.form-control:focus {
  border-color: var(--nexus-primary);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.12);
  outline: none;
}
.form-control:disabled, .form-control[readonly] {
  background: var(--nexus-gray-50);
  color: var(--nexus-gray-500);
  cursor: not-allowed;
}
.form-control.input-xs {
  height: var(--input-height-xs);
  padding: var(--input-padding-xs);
  font-size: var(--input-font-sm);
  border-radius: 4px;
}
.form-control.input-sm {
  height: var(--input-height-sm);
  padding: var(--input-padding-sm);
  font-size: var(--input-font-sm);
}
.form-control.input-md {
  height: var(--input-height-md);
  padding: var(--input-padding-md);
  font-size: var(--input-font-md);
}
.form-control.input-lg {
  height: var(--input-height-lg);
  padding: var(--input-padding-lg);
  font-size: var(--input-font-lg);
}
.form-control.is-invalid, .form-control:invalid:not(:placeholder-shown) {
  border-color: var(--nexus-error);
}
.form-control.is-invalid:focus, .form-control:invalid:not(:placeholder-shown):focus {
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.12);
}
.form-control.is-valid {
  border-color: var(--nexus-success);
}
.form-control.is-valid:focus {
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.12);
}

textarea.form-control {
  height: auto;
  min-height: 80px;
  padding: var(--nexus-space-2) var(--nexus-space-3);
  line-height: 1.5;
  resize: vertical;
}

select.form-control,
select.input-with-feedback,
select[data-fieldtype=Select] {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-color: var(--nexus-white);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2364748b' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e") !important;
  background-position: right 10px center !important;
  background-repeat: no-repeat !important;
  background-size: 14px !important;
  padding-right: 32px !important;
  padding-inline-end: 32px !important;
  cursor: pointer;
}
select.form-control:focus,
select.input-with-feedback:focus,
select[data-fieldtype=Select]:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%232563eb' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e") !important;
}
select.form-control::-ms-expand,
select.input-with-feedback::-ms-expand,
select[data-fieldtype=Select]::-ms-expand {
  display: none;
}

.control-input .select-icon,
.frappe-control[data-fieldtype=Select] .select-icon {
  display: none !important;
}

[dir=rtl] select.form-control,
[dir=rtl] select.input-with-feedback,
[dir=rtl] select[data-fieldtype=Select] {
  background-position: left 10px center !important;
  padding-right: 12px !important;
  padding-left: 32px !important;
  padding-inline-start: 12px !important;
  padding-inline-end: 32px !important;
}

.input-icon-wrapper {
  position: relative;
  display: inline-flex;
  width: 100%;
}
.input-icon-wrapper .form-control {
  padding-left: 32px;
}
.input-icon-wrapper .input-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: var(--nexus-gray-400);
  pointer-events: none;
}
.input-icon-wrapper.icon-right .form-control {
  padding-left: var(--input-padding-md);
  padding-right: 32px;
}
.input-icon-wrapper.icon-right .input-icon {
  left: auto;
  right: 10px;
}

.input-group {
  display: flex;
  align-items: stretch;
}
.input-group .form-control {
  flex: 1;
  min-width: 0;
}
.input-group .form-control:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group .form-control:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
}
.input-group .input-group-prepend,
.input-group .input-group-append {
  display: flex;
}
.input-group .input-group-prepend .btn,
.input-group .input-group-prepend .input-group-text,
.input-group .input-group-append .btn,
.input-group .input-group-append .input-group-text {
  border-radius: 0;
}
.input-group .input-group-prepend .btn:first-child,
.input-group .input-group-prepend .input-group-text:first-child {
  border-top-left-radius: var(--nexus-radius-sm);
  border-bottom-left-radius: var(--nexus-radius-sm);
}
.input-group .input-group-append {
  margin-left: -1px;
}
.input-group .input-group-append .btn:last-child,
.input-group .input-group-append .input-group-text:last-child {
  border-top-right-radius: var(--nexus-radius-sm);
  border-bottom-right-radius: var(--nexus-radius-sm);
}
.input-group .input-group-text {
  display: flex;
  align-items: center;
  padding: var(--input-padding-sm);
  font-size: var(--input-font-md);
  font-weight: 500;
  color: var(--nexus-gray-600);
  background: var(--nexus-gray-50);
  border: 1px solid var(--nexus-gray-200);
  white-space: nowrap;
}

.control-label,
.form-label,
label:not(.btn) {
  font-family: var(--nexus-font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--nexus-gray-600);
  margin-bottom: 4px;
  display: inline-block;
  letter-spacing: 0.01em;
}

.form-text,
.help-block {
  font-size: 11px;
  color: var(--nexus-gray-500);
  margin-top: 4px;
}

.form-group {
  margin-bottom: var(--nexus-space-4);
}
.form-group:last-child {
  margin-bottom: 0;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 24px;
  padding-left: 0;
}
.form-check .form-check-input {
  width: 16px;
  height: 16px;
  margin: 0;
  flex-shrink: 0;
  border: 1px solid var(--nexus-gray-300);
  border-radius: 3px;
  appearance: none;
  background: var(--nexus-white);
  cursor: pointer;
  transition: all var(--nexus-transition-fast);
}
.form-check .form-check-input:checked {
  background: var(--nexus-primary);
  border-color: var(--nexus-primary);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='white' d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.form-check .form-check-input:focus {
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
  outline: none;
}
.form-check .form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check .form-check-input[type=radio]:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3ccircle fill='white' cx='8' cy='8' r='4'/%3e%3c/svg%3e");
}
.form-check .form-check-label {
  font-size: 13px;
  color: var(--nexus-gray-700);
  cursor: pointer;
  margin-bottom: 0;
  font-weight: 400;
}

.frappe-control[data-fieldtype=Check],
.form-group[data-fieldtype=Check] {
  padding-top: 28px;
}
.frappe-control[data-fieldtype=Check] .checkbox,
.form-group[data-fieldtype=Check] .checkbox {
  margin: 0;
  padding: 0;
}
.frappe-control[data-fieldtype=Check] .checkbox label,
.form-group[data-fieldtype=Check] .checkbox label {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin: 0;
  padding: 10px 14px;
  background: var(--nexus-gray-50);
  border: 1px solid var(--nexus-gray-200);
  border-radius: var(--nexus-radius-sm);
  transition: all var(--nexus-transition-fast);
  min-height: 38px;
  font-weight: 400;
}
.frappe-control[data-fieldtype=Check] .checkbox label:hover,
.form-group[data-fieldtype=Check] .checkbox label:hover {
  background: var(--nexus-white);
  border-color: var(--nexus-gray-300);
}
.frappe-control[data-fieldtype=Check] .checkbox .input-area,
.form-group[data-fieldtype=Check] .checkbox .input-area {
  display: flex;
  align-items: center;
  order: 0;
}
.frappe-control[data-fieldtype=Check] .checkbox .label-area,
.form-group[data-fieldtype=Check] .checkbox .label-area {
  order: 1;
  font-size: 13px;
  font-weight: 500;
  color: var(--nexus-gray-700);
  line-height: 1.3;
}
.frappe-control[data-fieldtype=Check] .checkbox input[type=checkbox],
.form-group[data-fieldtype=Check] .checkbox input[type=checkbox] {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin: 0 !important;
  padding: 0 !important;
  border: 2px solid var(--nexus-gray-300);
  border-radius: 4px;
  background: var(--nexus-white);
  cursor: pointer;
  transition: all var(--nexus-transition-fast);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.frappe-control[data-fieldtype=Check] .checkbox input[type=checkbox]:hover,
.form-group[data-fieldtype=Check] .checkbox input[type=checkbox]:hover {
  border-color: var(--nexus-primary);
}
.frappe-control[data-fieldtype=Check] .checkbox input[type=checkbox]:focus,
.form-group[data-fieldtype=Check] .checkbox input[type=checkbox]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  border-color: var(--nexus-primary);
}
.frappe-control[data-fieldtype=Check] .checkbox input[type=checkbox]:checked,
.form-group[data-fieldtype=Check] .checkbox input[type=checkbox]:checked {
  background: var(--nexus-primary);
  border-color: var(--nexus-primary);
}
.frappe-control[data-fieldtype=Check] .checkbox input[type=checkbox]:checked::after,
.form-group[data-fieldtype=Check] .checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='white' d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.frappe-control[data-fieldtype=Check] .checkbox:has(input:checked) label,
.form-group[data-fieldtype=Check] .checkbox:has(input:checked) label {
  background: var(--nexus-primary-subtle);
  border-color: var(--nexus-primary);
}
.frappe-control[data-fieldtype=Check] .checkbox:has(input:checked) label .label-area,
.form-group[data-fieldtype=Check] .checkbox:has(input:checked) label .label-area {
  color: var(--nexus-gray-900);
  font-weight: 600;
}
.frappe-control[data-fieldtype=Check] .checkbox .help-box,
.form-group[data-fieldtype=Check] .checkbox .help-box {
  margin-top: 4px;
  margin-left: 28px;
}

[dir=rtl] .frappe-control[data-fieldtype=Check] .checkbox .input-area,
[dir=rtl] .form-group[data-fieldtype=Check] .checkbox .input-area {
  order: 0;
}
[dir=rtl] .frappe-control[data-fieldtype=Check] .checkbox .label-area,
[dir=rtl] .form-group[data-fieldtype=Check] .checkbox .label-area {
  order: 1;
}
[dir=rtl] .frappe-control[data-fieldtype=Check] .checkbox .help-box,
[dir=rtl] .form-group[data-fieldtype=Check] .checkbox .help-box {
  margin-left: 0;
  margin-right: 28px;
}

.web-list-container {
  background: var(--nexus-white);
  border: 1px solid var(--nexus-gray-200);
  border-radius: var(--nexus-radius-lg);
  box-shadow: var(--nexus-shadow-lg);
  overflow: hidden;
}
.web-list-container .web-list-header {
  background: linear-gradient(135deg, var(--nexus-gray-50) 0%, var(--nexus-white) 100%);
  border-bottom: 1px solid var(--nexus-gray-200);
  padding: var(--nexus-space-6) var(--nexus-space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--nexus-space-4);
}
.web-list-container .web-list-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--nexus-gray-900);
  margin: 0;
  display: flex;
  align-items: center;
  gap: var(--nexus-space-3);
}
.web-list-container .web-list-header h1::before {
  content: "";
  width: 4px;
  height: 28px;
  background: linear-gradient(180deg, var(--nexus-primary) 0%, var(--nexus-accent) 100%);
  border-radius: var(--nexus-radius-full);
}
.web-list-container .web-list-header .web-list-actions {
  display: flex;
  gap: var(--nexus-space-3);
}
.web-list-container .web-list-filters {
  background: var(--nexus-gray-50);
  border-bottom: 1px solid var(--nexus-gray-100);
  padding: var(--nexus-space-3) var(--nexus-space-8);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--nexus-space-2);
}
.web-list-container .web-list-filters .form-control {
  min-width: 160px;
  height: var(--input-height-sm);
  font-size: var(--input-font-sm);
}
.web-list-container .web-list-filters .btn {
  height: var(--btn-height-sm);
  font-size: var(--btn-font-sm);
}
.web-list-container .web-list-table .table {
  margin: 0;
  border: none;
}
.web-list-container .web-list-table .table thead tr {
  background: var(--nexus-gray-50);
}
.web-list-container .web-list-table .table thead tr th {
  font-family: var(--nexus-font-sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--nexus-gray-500);
  padding: var(--nexus-space-4) var(--nexus-space-5);
  border: none;
  border-bottom: 1px solid var(--nexus-gray-200);
}
.web-list-container .web-list-table .table tbody tr {
  transition: all var(--nexus-transition);
}
.web-list-container .web-list-table .table tbody tr:hover {
  background: var(--nexus-primary-subtle);
}
.web-list-container .web-list-table .table tbody tr td {
  font-family: var(--nexus-font-sans);
  font-size: 14px;
  color: var(--nexus-gray-700);
  padding: var(--nexus-space-4) var(--nexus-space-5);
  border: none;
  border-bottom: 1px solid var(--nexus-gray-100);
  vertical-align: middle;
}
.web-list-container .web-list-table .table tbody tr:last-child td {
  border-bottom: none;
}
.web-list-container .web-list-table .no-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--nexus-space-12) var(--nexus-space-8);
  text-align: center;
  min-height: 350px;
  background: linear-gradient(180deg, var(--nexus-white) 0%, var(--nexus-gray-50) 100%);
}
.web-list-container .web-list-table .no-result img, .web-list-container .web-list-table .no-result svg, .web-list-container .web-list-table .no-result .empty-state-icon {
  width: 80px;
  height: 80px;
  margin-bottom: var(--nexus-space-6);
  opacity: 0.6;
  filter: grayscale(20%);
}
.web-list-container .web-list-table .no-result p, .web-list-container .web-list-table .no-result .text-muted {
  font-family: var(--nexus-font-sans);
  font-size: 16px;
  color: var(--nexus-gray-500);
  margin-bottom: var(--nexus-space-6);
  max-width: 300px;
}
.web-list-container .web-list-table .no-result .btn.btn-primary {
  margin-top: var(--nexus-space-2);
}
.web-list-container .web-list-footer {
  background: var(--nexus-gray-50);
  border-top: 1px solid var(--nexus-gray-200);
  padding: var(--nexus-space-4) var(--nexus-space-8);
}

.web-form-header {
  background: var(--nexus-white);
  border: 1px solid var(--nexus-gray-200);
  border-bottom: none;
  border-radius: var(--nexus-radius-lg) var(--nexus-radius-lg) 0 0;
  box-shadow: var(--nexus-shadow);
  overflow: hidden;
}
.web-form-header .breadcrumb-container {
  background: var(--nexus-gray-50);
  padding: var(--nexus-space-4) var(--nexus-space-6);
  border-bottom: 1px solid var(--nexus-gray-100);
}
.web-form-header .breadcrumb-container .breadcrumb {
  margin: 0;
  font-size: 13px;
}
.web-form-header .breadcrumb-container .breadcrumb a {
  color: var(--nexus-primary);
  text-decoration: none;
}
.web-form-header .breadcrumb-container .breadcrumb a:hover {
  text-decoration: underline;
}
.web-form-header .web-form-head {
  padding: var(--nexus-space-6) var(--nexus-space-8);
  border-bottom: 1px solid var(--nexus-gray-200);
}
.web-form-header .web-form-head .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--nexus-space-4);
}
.web-form-header .web-form-head .title h1 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: var(--nexus-space-3);
}
.web-form-header .web-form-head .title h1::before {
  content: "";
  width: 4px;
  height: 28px;
  background: linear-gradient(180deg, var(--nexus-primary) 0%, var(--nexus-accent) 100%);
  border-radius: var(--nexus-radius-full);
}
.web-form-header .web-form-head .web-form-introduction {
  margin-top: var(--nexus-space-4);
}
.web-form-header .web-form-head .web-form-introduction p {
  color: var(--nexus-gray-500);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.web-form {
  background: var(--nexus-white);
  border: 1px solid var(--nexus-gray-200);
  border-top: none;
  border-radius: 0 0 var(--nexus-radius-lg) var(--nexus-radius-lg);
  box-shadow: var(--nexus-shadow-lg);
  padding: var(--nexus-space-8);
}
.web-form .form-section {
  margin-bottom: var(--nexus-space-8);
}
.web-form .form-section:last-child {
  margin-bottom: 0;
}
.web-form .form-section .section-head {
  font-family: var(--nexus-font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--nexus-gray-800);
  padding: var(--nexus-space-3) var(--nexus-space-4);
  margin-bottom: var(--nexus-space-5);
  background: linear-gradient(90deg, var(--nexus-primary-subtle) 0%, transparent 100%);
  border-left: 3px solid var(--nexus-primary);
  border-radius: 0 var(--nexus-radius) var(--nexus-radius) 0;
}
.web-form .form-group {
  margin-bottom: var(--nexus-space-5);
}
.web-form .web-form-footer {
  margin-top: var(--nexus-space-8);
  padding-top: var(--nexus-space-6);
  border-top: 1px solid var(--nexus-gray-200);
}
.web-form .web-form-footer .web-form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--nexus-space-4);
}
.web-form .web-form-footer .web-form-actions .left-area,
.web-form .web-form-footer .web-form-actions .right-area {
  display: flex;
  gap: var(--nexus-space-3);
}

.success-page {
  background: var(--nexus-white);
  border: 1px solid var(--nexus-gray-200);
  border-radius: var(--nexus-radius-lg);
  box-shadow: var(--nexus-shadow-lg);
  padding: var(--nexus-space-12) var(--nexus-space-8);
  text-align: center;
}
.success-page .success-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--nexus-space-4);
}
.success-page .success-header .success-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--nexus-success) 0%, #34d399 100%);
  border-radius: var(--nexus-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-page .success-header .success-icon svg, .success-page .success-header .success-icon img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}
.success-page .success-header .success-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--nexus-gray-900);
  margin: 0;
}
.success-page .success-body {
  margin: var(--nexus-space-6) 0;
}
.success-page .success-body .success-message {
  color: var(--nexus-gray-500);
  font-size: 15px;
  max-width: 400px;
  margin: 0 auto;
}
.success-page .success-footer {
  display: flex;
  justify-content: center;
  gap: var(--nexus-space-3);
}

.my-account-container {
  max-width: 900px;
}
.my-account-container .my-account-header {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--nexus-gray-900);
  margin-bottom: var(--nexus-space-6);
  display: flex;
  align-items: center;
  gap: var(--nexus-space-3);
}
.my-account-container .my-account-header::before {
  content: "";
  width: 4px;
  height: 28px;
  background: linear-gradient(180deg, var(--nexus-primary) 0%, var(--nexus-accent) 100%);
  border-radius: var(--nexus-radius-full);
}
.my-account-container .account-info {
  background: var(--nexus-white);
  border: 1px solid var(--nexus-gray-200);
  border-radius: var(--nexus-radius-lg);
  box-shadow: var(--nexus-shadow-lg);
  overflow: hidden;
}
.my-account-container .account-info .col {
  padding: var(--nexus-space-5) var(--nexus-space-6);
  border-bottom: 1px solid var(--nexus-gray-100);
  transition: all var(--nexus-transition);
}
.my-account-container .account-info .col:hover {
  background: var(--nexus-gray-50);
}
.my-account-container .account-info .col:last-child {
  border-bottom: none;
}
.my-account-container .account-info .my-account-name {
  font-weight: 600;
  color: var(--nexus-gray-900);
}
.my-account-container .account-info .my-account-item {
  font-weight: 600;
  color: var(--nexus-gray-800);
}
.my-account-container .account-info .my-account-item-desc {
  color: var(--nexus-gray-500);
  font-size: 13px;
}
.my-account-container .account-info .my-account-avatar .avatar {
  border: 3px solid var(--nexus-white);
  box-shadow: var(--nexus-shadow-md);
}

.side-list .list-group {
  background: var(--nexus-white);
  border: 1px solid var(--nexus-gray-200);
  border-radius: var(--nexus-radius-lg);
  box-shadow: var(--nexus-shadow);
  overflow: hidden;
}
.side-list .list-group .list-group-item {
  font-family: var(--nexus-font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--nexus-gray-700);
  padding: var(--nexus-space-4) var(--nexus-space-5);
  border: none;
  border-bottom: 1px solid var(--nexus-gray-100);
  transition: all var(--nexus-transition);
  display: flex;
  align-items: center;
  gap: var(--nexus-space-3);
}
.side-list .list-group .list-group-item:last-child {
  border-bottom: none;
}
.side-list .list-group .list-group-item:hover {
  background: var(--nexus-gray-50);
  color: var(--nexus-primary);
  padding-left: var(--nexus-space-6);
}
.side-list .list-group .list-group-item.active {
  background: linear-gradient(90deg, var(--nexus-primary) 0%, var(--nexus-primary-light) 100%);
  color: var(--nexus-white);
  font-weight: 600;
}
.side-list .list-group .list-group-item.active:hover {
  padding-left: var(--nexus-space-5);
}

.web-navbar {
  background: var(--nexus-white);
  border-bottom: 1px solid var(--nexus-gray-200);
  box-shadow: var(--nexus-shadow);
}

footer {
  color: var(--nexus-gray-500);
  font-size: 13px;
}
footer a {
  color: var(--nexus-primary);
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

.footer-logo-extension .input-group {
  display: inline-flex;
  width: auto;
  max-width: 100%;
  justify-content: flex-end;
}
.footer-logo-extension .input-group #footer-subscribe-email {
  width: auto;
  min-width: 240px;
  max-width: 290px;
  flex: 0 1 auto;
  height: var(--btn-height-sm);
  font-size: var(--input-font-sm);
  padding: var(--input-padding-sm);
}
.footer-logo-extension .input-group .input-group-append {
  display: flex;
  margin-left: -1px;
}
.footer-logo-extension .input-group .input-group-append #footer-subscribe-button,
.footer-logo-extension .input-group .input-group-append #footer-subscribe-button.btn-secondary {
  height: var(--btn-height-sm);
  font-size: var(--btn-font-sm);
  padding: var(--btn-padding-sm);
  background-color: var(--nexus-primary) !important;
  border-color: var(--nexus-primary) !important;
  color: var(--nexus-white) !important;
}
.footer-logo-extension .input-group .input-group-append #footer-subscribe-button:hover,
.footer-logo-extension .input-group .input-group-append #footer-subscribe-button.btn-secondary:hover {
  background-color: var(--nexus-primary-hover) !important;
  border-color: var(--nexus-primary-hover) !important;
}
@media (max-width: 768px) {
  .footer-logo-extension .row {
    flex-direction: column;
  }
  .footer-logo-extension .col-md-6 {
    width: 100%;
    text-align: center !important;
  }
  .footer-logo-extension .input-group {
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--nexus-space-2);
  }
  .footer-logo-extension .input-group #footer-subscribe-email {
    min-width: 160px;
    max-width: 100%;
    flex: 1 1 auto;
  }
}
@media (max-width: 480px) {
  .footer-logo-extension .input-group {
    flex-direction: column;
    width: 100%;
  }
  .footer-logo-extension .input-group #footer-subscribe-email {
    width: 100%;
    max-width: none;
    border-radius: var(--nexus-radius-sm);
  }
  .footer-logo-extension .input-group .input-group-append {
    width: 100%;
    margin-left: 0;
    margin-top: var(--nexus-space-2);
  }
  .footer-logo-extension .input-group .input-group-append #footer-subscribe-button {
    width: 100%;
    margin-left: 0 !important;
    border-radius: var(--nexus-radius-sm);
  }
}

[dir=rtl] .footer-logo-extension .input-group {
  justify-content: flex-start;
}
[dir=rtl] .footer-logo-extension .input-group .input-group-append {
  margin-left: 0;
  margin-right: 0;
}
[dir=rtl] .footer-logo-extension .input-group .input-group-append #footer-subscribe-button {
  margin-left: 0 !important;
  margin-right: var(--nexus-space-2);
}
[dir=rtl] .footer-logo-extension .text-right {
  text-align: left !important;
}
[dir=rtl] .footer-logo-extension .text-left {
  text-align: right !important;
}

@media (max-width: 768px) {
  .web-list-container {
    border-radius: var(--nexus-radius-md);
  }
  .web-list-container .web-list-header {
    padding: var(--nexus-space-4) var(--nexus-space-5);
  }
  .web-list-container .web-list-header h1 {
    font-size: 1.25rem;
  }
  .web-list-container .web-list-header h1::before {
    height: 24px;
  }
  .web-list-container .web-list-filters {
    padding: var(--nexus-space-3) var(--nexus-space-5);
  }
  .web-list-container .web-list-table .no-result {
    padding: var(--nexus-space-8) var(--nexus-space-4);
    min-height: 280px;
  }
  .web-form-header .web-form-head {
    padding: var(--nexus-space-4) var(--nexus-space-5);
  }
  .web-form {
    padding: var(--nexus-space-5);
    border-radius: 0 0 var(--nexus-radius-md) var(--nexus-radius-md);
  }
}
[dir=rtl] .web-list-container .web-list-header h1::before {
  margin-right: 0;
  margin-left: var(--nexus-space-3);
}
[dir=rtl] .web-form-header .web-form-head .title h1::before {
  margin-right: 0;
  margin-left: var(--nexus-space-3);
}
[dir=rtl] .form-section .section-head {
  border-left: none;
  border-right: 3px solid var(--nexus-primary);
  background: linear-gradient(270deg, var(--nexus-primary-subtle) 0%, transparent 100%);
  border-radius: var(--nexus-radius) 0 0 var(--nexus-radius);
}
[dir=rtl] .my-account-header::before {
  margin-right: 0;
  margin-left: var(--nexus-space-3);
}
[dir=rtl] .side-list .list-group .list-group-item:hover {
  padding-left: var(--nexus-space-5);
  padding-right: var(--nexus-space-6);
}

@media (prefers-color-scheme: dark) {
  [data-theme=dark] {
    --nexus-white: #1e293b;
    --nexus-gray-50: #0f172a;
    --nexus-gray-100: #1e293b;
    --nexus-gray-200: #334155;
    --nexus-gray-300: #475569;
    --nexus-gray-400: #64748b;
    --nexus-gray-500: #94a3b8;
    --nexus-gray-600: #cbd5e1;
    --nexus-gray-700: #e2e8f0;
    --nexus-gray-800: #f1f5f9;
    --nexus-gray-900: #f8fafc;
    --nexus-primary-subtle: rgba(37, 99, 235, 0.15);
  }
}
