/* Font Face Declarations */
@font-face {
  font-family: 'GT-Walsheim-Pro';
  src: url('./font/GT-Walsheim-Pro-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT-Walsheim-Pro';
  src: url('./font/GT-Walsheim-Pro-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT-Walsheim-Pro';
  src: url('./font/GT-Walsheim-Pro-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Base Colors - Updated Color Palette */
:root {
  --primary-violet: #4F2D7F;
  /* Violet RCGT */
  --secondary-violet: #863DF9;
  /* Violet Light */
  --dark-violet: #3F2466;
  /* Violet Dark */
  --blue: #A0BED8;
  /* Blue */
  --light-blue: #CCE7FF;
  /* Light Blue */
  --yellow: #FFDC00;
  /* Yellow */
  --error-red: #F51468;
  /* Red */
  --white: #FFFFFF;
  /* White */
  --grey: #F2F2F2;
  /* Grey */

  /* Additional grays for various UI elements */
  --text-gray: #5c5c5c;
  --border-gray: #d6d6d6;
  --focus-violet: #863DF9;
  --success-green: #2e7d32;
  --page-bg: #F2F2F2;
  /* this is for the bootstrap components (faq page - header) */
  --bs-body-font-family: 'GT-Walsheim-Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Base Typography */
body {
  font-family: 'GT-Walsheim-Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--text-gray);
}

/* Form Wrapper */
.form-wrapper {
  background: var(--page-bg);
  min-height: 100vh;
  padding: 20px 0;
}

.schedule-label {
  max-width: 800px;
  margin: 0 auto 10px auto;
  font-family: 'GT-Walsheim-Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-violet);
  text-align: center;
  padding: 10px 0;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border-gray);
  box-shadow: 0 2px 4px rgba(79, 45, 127, 0.1);
}

/* Form Header */
.form-header {
  background: var(--primary-violet);
  color: white;
  padding: 20px 30px;
  border-bottom: 4px solid var(--secondary-violet);
}

.form-title {
  font-family: 'GT-Walsheim-Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-subtitle {
  font-family: 'GT-Walsheim-Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  margin-top: 8px;
  opacity: 0.9;
  font-weight: 300;
}

/* Form Body */
.form-body {
  padding: 30px;
}

/* ============================================
   ALERT MESSAGES
   ============================================ */

.alert {
  padding: 12px 20px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 14px;
}

.alert-danger {
  color: #721c24;
  background-color: #ffe6ec;
  border-color: var(--error-red);
}

.alert-warning {
  color: #856404;
  background-color: #fff9cc;
  border-color: var(--yellow);
}

.alert strong {
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.alert ul {
  margin: 8px 0 0 0;
  padding-left: 20px;
}

.alert li {
  margin: 4px 0;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
  background: var(--grey);
  border-left: 4px solid var(--primary-violet);
  padding: 10px 15px;
  margin: 30px -30px 20px -30px;
  font-family: 'GT-Walsheim-Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-violet);
}

.section-header:first-child {
  margin-top: 0;
}

.section-number {
  display: inline-block;
  margin-right: 8px;
}

/* ============================================
   FORM LAYOUT
   ============================================ */

.form-group {
  margin-bottom: 20px;
  clear: both;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.col-full {
  flex: 1;
}

.col-half {
  flex: 0 0 48%;
}

.col-third {
  flex: 0 0 31%;
}

.col-quarter {
  flex: 0 0 23%;
}

.col-three-quarter {
  flex: 0 0 73%;
}

.col-two-thirds {
  flex: 0 0 65%;
}

/* ============================================
   FORM CONTROLS
   ============================================ */

.form-label {
  display: block;
  font-family: 'GT-Walsheim-Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-gray);
  margin-bottom: 5px;
}

.required {
  color: var(--error-red);
  font-weight: 400;
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--border-gray);
  border-radius: 0;
  font-family: 'GT-Walsheim-Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-weight: 400;
  background: white;
  transition: border-color 0.15s ease-in-out, outline 0.15s ease-in-out;
}

.form-control:focus {
  outline: 2px solid var(--focus-violet);
  outline-offset: 0;
  border-color: var(--focus-violet);
}

.form-control:disabled {
  background: var(--grey);
  cursor: not-allowed;
  opacity: 0.6;
}

.form-control::placeholder {
  color: #999;
  opacity: 1;
}

/* Select Dropdown */
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3e%3cpath fill='%234F2D7F' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 35px;
  cursor: pointer;
}

/* Textarea */
textarea.form-control {
  resize: vertical;
  min-height: 80px;
  font-family: 'GT-Walsheim-Pro', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Radio and Checkbox Groups */
.radio-group,
.checkbox-group {
  display: flex;
  gap: 20px;
  padding: 5px 0;
  flex-wrap: wrap;
}

.radio-item,
.checkbox-item {
  display: flex;
  align-items: center;
}

.radio-item input[type="radio"],
.checkbox-item input[type="checkbox"] {
  margin-right: 6px;
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: var(--secondary-violet);
}

.radio-item label,
.checkbox-item label {
  font-family: 'GT-Walsheim-Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  cursor: pointer;
  font-weight: 400;
  margin: 0;
}

/* Ensure checkboxes are styled properly */
.checkbox-item {
  margin-bottom: 10px;
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.checkbox-item label {
  font-size: 15px;
}

/* ============================================
   ERROR & VALIDATION STATES
   ============================================ */

.form-control.is-invalid {
  border-color: var(--error-red);
  background: #fff5f7;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23F51468' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23F51468' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  padding-right: calc(1.5em + 0.75rem);
}

.form-control.is-invalid:focus {
  border-color: var(--error-red);
  outline-color: var(--error-red);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 4px;
  font-size: 12px;
  color: var(--error-red);
}

.invalid-feedback.d-block {
  display: block;
}

.form-control.is-valid {
  border-color: var(--success-green);
  background: #f5fff5;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%232e7d32' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  padding-right: calc(1.5em + 0.75rem);
}

.form-control.is-valid:focus {
  border-color: var(--success-green);
  outline-color: var(--success-green);
}

/* ============================================
   HELP & INFO TEXT
   ============================================ */

.help-text {
  font-family: 'GT-Walsheim-Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #666;
  margin-top: 4px;
  font-style: italic;
}

.info-text {
  background: var(--light-blue);
  border-left: 3px solid var(--blue);
  padding: 10px 15px;
  margin: 20px 0;
  font-family: 'GT-Walsheim-Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 400;
}

.info-text strong {
  font-weight: 700;
}

.info-box {
  background: var(--light-blue);
  border-left: 3px solid var(--blue);
  padding: 12px 15px;
  margin: 20px 30px;
  font-family: 'GT-Walsheim-Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

/* ============================================
   CONDITIONAL SECTIONS
   ============================================ */

.conditional-section {
  background: #fffef5;
  border: 1px solid var(--yellow);
  padding: 20px;
  margin: 15px 0;
  transition: all 0.3s ease;
}

.conditional-section.hidden {
  display: none;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  padding: 10px 30px;
  font-family: 'GT-Walsheim-Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 0;
}

.btn-primary {
  background: var(--primary-violet);
  color: white;
  border-color: var(--primary-violet);
}

.btn-primary:hover {
  background: var(--secondary-violet);
  border-color: var(--secondary-violet);
}

.btn-primary:focus {
  outline: 2px solid var(--focus-violet);
  outline-offset: 2px;
}

.btn-primary:active {
  transform: translateY(1px);
}

.btn-secondary {
  background: white;
  color: var(--primary-violet);
  border-color: var(--primary-violet);
}

.btn-secondary:hover {
  background: var(--grey);
}

.btn-cancel {
  background: white;
  color: var(--text-gray);
  border-color: var(--border-gray);
}

.btn-cancel:hover {
  background: var(--grey);
  border-color: var(--text-gray);
}

.form-submit-section {
  border-top: 2px solid var(--border-gray);
  margin-top: 30px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

/* ============================================
   FILE UPLOAD
   ============================================ */

.file-upload-container {
  position: relative;
  border: 2px dashed var(--border-gray);
  border-radius: 0;
  padding: 20px;
  background: var(--grey);
  transition: all 0.3s ease;
}

.file-upload-container:hover {
  border-color: var(--secondary-violet);
  background: #fafafa;
}

.file-upload-container.drag-over {
  border-color: var(--primary-violet);
  background: var(--light-blue);
}

.file-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 30px;
  transition: all 0.2s ease;
}

.file-upload-label:hover {
  color: var(--primary-violet);
}

.file-upload-label svg {
  margin-bottom: 10px;
  color: var(--secondary-violet);
}

.file-upload-label span {
  font-family: 'GT-Walsheim-Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-gray);
}

.file-list {
  margin-top: 15px;
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  margin-bottom: 8px;
  background: white;
  border: 1px solid var(--border-gray);
  border-radius: 0;
}

.file-item:hover {
  background: #fcfcfc;
}

.file-info {
  display: flex;
  align-items: center;
  flex: 1;
}

.file-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  color: var(--secondary-violet);
}

.file-name {
  font-size: 14px;
  color: var(--text-gray);
  margin-right: 10px;
}

.file-size {
  font-size: 12px;
  color: #999;
}

.file-remove {
  background: none;
  border: none;
  color: var(--error-red);
  cursor: pointer;
  padding: 5px;
  font-size: 18px;
  line-height: 1;
  transition: all 0.2s ease;
}

.file-remove:hover {
  color: #d01050;
  transform: scale(1.1);
}

.file-upload-error {
  color: var(--error-red);
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

.file-upload-error.show {
  display: block;
}

/* ============================================
   LOADING STATE
   ============================================ */

.form-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.6;
}

.form-loading::after {
  content: "Processing...";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px 40px;
  border: 2px solid var(--primary-violet);
  box-shadow: 0 4px 20px rgba(79, 45, 127, 0.2);
  z-index: 1000;
  font-family: 'GT-Walsheim-Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

/* ============================================
   PROGRESS BAR - OPTIMIZED FOR 9 PARTS
   ============================================ */

/* Progress bar container */
.progress-bar {
  display: block !important;
  width: 100% !important;
  white-space: nowrap !important;
  font-size: 0 !important;
  padding: 20px 5px !important;
  background: linear-gradient(to bottom, #fafafa, var(--grey)) !important;
  border-bottom: 1px solid #e0e0e0 !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  min-height: 75px !important;
  position: relative !important;
}

/* Custom scrollbar */
.progress-bar::-webkit-scrollbar {
  height: 6px;
}

.progress-bar::-webkit-scrollbar-track {
  background: var(--grey);
}

.progress-bar::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 3px;
}

.progress-bar::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-violet);
}

/* Progress step */
.progress-step {
  display: inline-block !important;
  vertical-align: top !important;
  position: relative !important;
  width: 120px !important;
  min-width: 120px !important;
  height: 55px !important;
  margin-right: 2px !important;
  font-size: 14px !important;
  z-index: 1 !important;
  float: none !important;
  flex: none !important;
  clear: none !important;
}

.progress-step:first-child {
  margin-left: 10px !important;
}

.progress-step:last-child {
  margin-right: 10px !important;
}

/* Step indicator */
.step-indicator {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  background: #f8f8f8 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 8px 10px !important;
  box-sizing: border-box !important;
  transition: all 0.3s ease !important;
  cursor: default !important;
  border: 2px solid #d0d0d0 !important;
  border-radius: 4px !important;
}

/* Step content */
.step-part {
  display: block !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #4a4a4a !important;
  text-transform: uppercase !important;
  margin: 0 !important;
  margin-bottom: 2px !important;
  white-space: nowrap !important;
  letter-spacing: 0.5px !important;
  text-align: center !important;
}

.step-name {
  display: block !important;
  font-size: 10px !important;
  color: #666666 !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 100px !important;
  font-weight: 500 !important;
  text-align: center !important;
  margin: 0 !important;
}

/* ============================================
   STEP STATES
   ============================================ */

/* Inactive state */
.progress-step:not(.active):not(.completed) .step-indicator {
  background: #f8f8f8 !important;
  border-color: #d0d0d0 !important;
}

.progress-step:not(.active):not(.completed) .step-part {
  color: #7a7a7a !important;
}

.progress-step:not(.active):not(.completed) .step-name {
  color: #999999 !important;
}

/* Completed state */
.progress-step.completed .step-indicator {
  background: linear-gradient(135deg, var(--yellow), #ffed4e) !important;
  border-color: var(--yellow) !important;
}

.progress-step.completed .step-part {
  color: var(--dark-violet) !important;
  font-weight: 700 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

.progress-step.completed .step-name {
  color: var(--primary-violet) !important;
  font-weight: 500 !important;
}

/* Active state */
.progress-step.active .step-indicator {
  background: linear-gradient(135deg, var(--primary-violet), var(--secondary-violet)) !important;
  border-color: var(--primary-violet) !important;
  box-shadow: 0 2px 8px rgba(79, 45, 127, 0.3) !important;
}

.progress-step.active .step-part {
  color: #ffffff !important;
  font-weight: 700 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
}

.progress-step.active .step-name {
  color: #f0e6ff !important;
  font-weight: 600 !important;
}

/* Hover effect */
.progress-step:not(.active):not(.completed):hover .step-indicator {
  background: var(--grey) !important;
  transition: all 0.2s ease !important;
}

.progress-step:not(.active):not(.completed):hover .step-part {
  color: var(--primary-violet) !important;
}

.progress-step:not(.active):not(.completed):hover .step-name {
  color: #7a7a7a !important;
}

/* ============================================
   CLICKABLE STEPS
   ============================================ */

.progress-step.clickable {
  cursor: pointer !important;
}

.progress-step.clickable .step-indicator {
  cursor: pointer !important;
}

.progress-step.clickable:hover .step-indicator {
  transform: translateY(-1px) !important;
  box-shadow: 0 3px 10px rgba(79, 45, 127, 0.15) !important;
}

.step-link {
  text-decoration: none !important;
  color: inherit !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablets */
@media (max-width: 992px) {
  .progress-bar {
    padding: 15px 5px !important;
    min-height: 65px !important;
  }

  .progress-step {
    width: 100px !important;
    min-width: 100px !important;
    height: 48px !important;
  }

  .step-indicator {
    padding: 6px 8px !important;
  }

  .step-part {
    font-size: 11px !important;
  }

  .step-name {
    font-size: 9px !important;
    max-width: 85px !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .form-container {
    margin: 0 10px;
    box-shadow: none;
  }

  .form-body {
    padding: 20px;
  }

  .form-header {
    padding: 15px 20px;
  }

  .form-title {
    font-size: 20px;
  }

  .section-header {
    margin-left: -20px;
    margin-right: -20px;
    font-size: 16px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .col-half,
  .col-third,
  .col-quarter,
  .col-three-quarter,
  .col-two-thirds {
    flex: 1 1 100%;
  }

  .radio-group,
  .checkbox-group {
    flex-direction: column;
    gap: 10px;
  }

  .form-submit-section {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .file-upload-container {
    padding: 15px;
  }

  .file-upload-label {
    padding: 20px;
  }

  .file-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
  }

  .file-info {
    margin-bottom: 8px;
    width: 100%;
  }

  .file-remove {
    align-self: flex-end;
  }

  .progress-bar {
    overflow-x: scroll !important;
    padding: 12px 5px !important;
    min-height: 58px !important;
  }

  .progress-step {
    width: 85px !important;
    min-width: 85px !important;
    height: 42px !important;
    margin-right: 1px !important;
  }

  .step-indicator {
    padding: 5px 6px !important;
    border-width: 1px !important;
  }

  .step-part {
    font-size: 10px !important;
  }

  .step-name {
    font-size: 8px !important;
    max-width: 70px !important;
  }
}

/* Very small screens */
@media (max-width: 480px) {
  .form-title {
    font-size: 18px;
  }

  .section-header {
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  .progress-step {
    width: 75px !important;
    min-width: 75px !important;
    height: 40px !important;
  }

  .step-part {
    font-size: 9px !important;
    letter-spacing: 0 !important;
  }

  .step-name {
    font-size: 7px !important;
    max-width: 60px !important;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */

/* @media print {
  .form-wrapper {
    background: white;
    padding: 0;
  }

  .form-container {
    box-shadow: none;
    border: 1px solid #000;
    max-width: 100%;
  }

  .btn,
  .form-submit-section {
    display: none;
  }

  .form-header {
    background: none;
    color: black;
    border-bottom: 2px solid black;
  }

  .section-header {
    background: none;
    border-left: 2px solid black;
    page-break-before: auto;
  }

  .form-control {
    border: 1px solid black;
  }

  .alert {
    border: 1px solid black;
    background: white !important;
    color: black !important;
  }

  .progress-bar {
    display: none !important;
  }
} */

/* ============================================
   ACCESSIBILITY
   ============================================ */

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

*:focus-visible {
  outline: 2px solid var(--focus-violet);
  outline-offset: 2px;
}

/* ============================================
   HIGH CONTRAST MODE
   ============================================ */

@media (prefers-contrast: high) {
  .form-control {
    border-width: 2px;
  }

  .btn {
    border-width: 3px;
  }

  .required {
    font-weight: bold;
  }
}

/* ============================================
   COMPACT MODE (8-9 PARTS)
   ============================================ */

.progress-bar.compact {
  padding: 18px 5px !important;
  min-height: 68px !important;
}

.progress-bar.compact .progress-step {
  width: 105px !important;
  min-width: 105px !important;
  height: 48px !important;
  margin-right: 2px !important;
}

.progress-bar.compact .step-indicator {
  padding: 7px 8px !important;
}

.progress-bar.compact .step-part {
  font-size: 11px !important;
  margin-bottom: 1px !important;
  letter-spacing: 0.3px !important;
}

.progress-bar.compact .step-name {
  font-size: 9px !important;
  max-width: 85px !important;
}

/* ============================================
   EXTRA COMPACT MODE (10+ PARTS)
   ============================================ */

.progress-bar.extra-compact {
  padding: 15px 5px !important;
  min-height: 62px !important;
}

.progress-bar.extra-compact .progress-step {
  width: 92px !important;
  min-width: 92px !important;
  height: 42px !important;
  margin-right: 1px !important;
}

.progress-bar.extra-compact .step-indicator {
  padding: 5px 6px !important;
  border-width: 1px !important;
}

.progress-bar.extra-compact .step-part {
  font-size: 10px !important;
  margin-bottom: 1px !important;
  letter-spacing: 0.2px !important;
}

.progress-bar.extra-compact .step-name {
  font-size: 8px !important;
  max-width: 75px !important;
  font-weight: 400 !important;
}

.encrypted-field {
  background-color: #f8f9fa;
  color: #6c757d;
}

.edit-encrypted-field,
.cancel-edit-field {
  margin-left: 10px;
}
