
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
.overlay-content {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
  
.overlay-content::-webkit-scrollbar {
    display: none;
}
.team-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px 16px;
}

.team-header {
  margin-bottom: 24px;
}

.team-header h1 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: #1a1a1a;
}

.team-loading {
  text-align: center;
  padding: 48px 0;
  color: #666;
}

.team-error {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fce4ec;
  color: #c62828;
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 0.875rem;
}

.team-error-dismiss {
  background: none;
  border: none;
  color: #c62828;
  cursor: pointer;
  font-size: 1rem;
  padding: 0 4px;
}

/* Role groups */
.team-roles-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
}

.team-role-group {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.team-role-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
}

.team-role-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  color: #333;
  text-transform: capitalize;
}

.team-role-count {
  background: #e0e0e0;
  color: #555;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 12px;
}

.team-add-btn {
  margin-left: auto;
  background: none;
  border: 1px solid #ccc;
  color: #555;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.team-add-btn:hover {
  background: #e3f2fd;
  border-color: #1565c0;
  color: #1565c0;
}

/* Add user form */
.team-add-form {
  display: flex;
  gap: 8px;
  padding: 10px 16px;
  background: #fafafa;
  border-bottom: 1px solid #e0e0e0;
}

.team-add-input {
  flex: 1;
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.875rem;
}

.team-add-input:focus {
  outline: none;
  border-color: #1565c0;
}

.team-add-confirm {
  padding: 6px 16px;
  background: #1565c0;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.875rem;
}

.team-add-confirm:hover {
  background: #0d47a1;
}

.team-add-confirm:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.team-add-cancel {
  padding: 6px 12px;
  background: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.875rem;
  color: #666;
}

/* Member rows */
.team-members {
  display: flex;
  flex-direction: column;
}

.team-member-empty {
  padding: 16px;
  text-align: center;
  color: #999;
  font-size: 0.875rem;
}

.team-member-row {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid #f0f0f0;
}

.team-member-row:last-child {
  border-bottom: none;
}

.team-member-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.team-member-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.team-member-email {
  font-size: 0.8rem;
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Action buttons */
.team-member-actions {
  display: flex;
  gap: 4px;
  margin-left: 12px;
  flex-shrink: 0;
}

.team-action-btn {
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.9rem;
  line-height: 1;
}

.team-action-btn:hover {
  background: #f5f5f5;
  border-color: #ddd;
}

.team-action-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.team-promote-btn {
  color: #2e7d32;
}

.team-promote-btn:hover {
  background: #e8f5e9;
  border-color: #2e7d32;
}

.team-demote-btn {
  color: #e65100;
}

.team-demote-btn:hover {
  background: #fff3e0;
  border-color: #e65100;
}

.team-remove-btn {
  color: #c62828;
}

.team-remove-btn:hover {
  background: #fce4ec;
  border-color: #c62828;
}

/* Add custom role */
.team-add-role-section {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
}

.team-add-role-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.875rem;
}

.team-add-role-input:focus {
  outline: none;
  border-color: #1565c0;
}

.team-add-role-btn {
  padding: 8px 16px;
  background: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.875rem;
  color: #333;
}

.team-add-role-btn:hover {
  background: #e0e0e0;
}

.team-add-role-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.ticket-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px 16px;
}

.ticket-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.ticket-header h1 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: #1a1a1a;
}

.ticket-company {
  background: #e0e0e0;
  color: #555;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 12px;
}

.ticket-new-btn {
  margin-left: auto;
}

.ticket-loading {
  text-align: center;
  padding: 48px 0;
  color: #666;
}

.ticket-error {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fce4ec;
  color: #c62828;
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 0.875rem;
}

.ticket-error-dismiss {
  background: none;
  border: none;
  color: #c62828;
  cursor: pointer;
  font-size: 1rem;
  padding: 0 4px;
}

/* Buttons */
.ticket-btn-primary {
  padding: 6px 16px;
  background: #1565c0;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.875rem;
}

.ticket-btn-primary:hover {
  background: #0d47a1;
}

.ticket-btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.ticket-btn-secondary {
  padding: 6px 16px;
  margin-right: 8px;
  background: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.875rem;
  color: #333;
}

.ticket-btn-secondary:hover {
  background: #e0e0e0;
}

/* Company picker */
.ticket-company-picker {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px;
}

.ticket-company-picker p {
  margin: 0 0 12px;
  font-size: 0.875rem;
  color: #555;
}

/* Submit form */
.ticket-form {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ticket-form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ticket-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.ticket-field-grow {
  flex: 1;
}

.ticket-field > span {
  font-size: 0.75rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.ticket-field input,
.ticket-field select,
.ticket-field textarea {
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.875rem;
  font-family: inherit;
  max-width: 100%;
}

.ticket-field input:focus,
.ticket-field select:focus,
.ticket-field textarea:focus {
  outline: none;
  border-color: #1565c0;
}

.ticket-form-actions {
  display: flex;
  justify-content: flex-end;
}

/* Filters */
.ticket-filters {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.ticket-filters select,
.ticket-filters input[type="text"] {
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.875rem;
}

.ticket-filter-mine {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: #555;
}

/* Hierarchy list */
.ticket-list {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.ticket-empty {
  padding: 24px;
  text-align: center;
  color: #999;
  font-size: 0.875rem;
}

.ticket-row {
  border-bottom: 1px solid #f0f0f0;
}

.ticket-row:last-child {
  border-bottom: none;
}

.ticket-row-main {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px 10px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.9rem;
  min-width: 0;
}

.ticket-row-main:hover {
  background: #fafafa;
}

.ticket-type {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 2px 6px;
  border-radius: 3px;
  background: #eceff1;
  color: #546e7a;
  flex-shrink: 0;
}

.ticket-type-epic { background: #f3e5f5; color: #6a1b9a; }
.ticket-type-feature { background: #e3f2fd; color: #1565c0; }
.ticket-type-user-story,
.ticket-type-product-backlog-item { background: #e8f5e9; color: #2e7d32; }
.ticket-type-bug { background: #fce4ec; color: #c62828; }
.ticket-type-task { background: #fff3e0; color: #e65100; }

.ticket-id {
  color: #999;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.ticket-title {
  flex: 1;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ticket-state {
  font-size: 0.8rem;
  color: #666;
  flex-shrink: 0;
}

/* Detail panel */
.ticket-detail {
  padding: 12px 16px;
  background: #fafafa;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.875rem;
}

.ticket-detail-loading {
  color: #666;
}

.ticket-detail-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 0 12px;
}

.ticket-detail-meta div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ticket-detail-meta dt {
  font-size: 0.7rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
}

.ticket-detail-meta dd {
  margin: 0;
  color: #333;
}

.ticket-detail-subhead {
  font-size: 0.75rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 12px 0 4px;
}

.ticket-detail-text {
  margin: 0;
  color: #333;
  white-space: pre-wrap;
}

.ticket-comment-empty {
  color: #999;
  font-size: 0.8rem;
}

.ticket-comment {
  display: flex;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}

.ticket-comment:last-of-type {
  border-bottom: none;
}

.ticket-comment-date {
  color: #999;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.ticket-comment-text {
  color: #333;
  white-space: pre-wrap;
  min-width: 0;
}

.ticket-comment-form {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.ticket-comment-input {
  flex: 1;
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.875rem;
  min-width: 0;
}

.ticket-comment-input:focus {
  outline: none;
  border-color: #1565c0;
}

/* Main container styles */
.form-demo-container {
    background-color: #f5f5f5;
    min-height: 100vh;
    padding: 3rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
  }
  
  .demo-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .demo-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .demo-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
  }
  
  .demo-subtitle {
    font-size: 1.125rem;
    color: #4a5568;
  }
  
  /* Multi-step form container */
  .multi-step-form {
    max-width: 768px;
    margin: 0 auto;
    padding: min(0.5rem,3vmin);
    font-family: system-ui, -apple-system, sans-serif;
  }
  
  .form-main-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #1a202c;
  }
  
  .form-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #4a5568;
  }
  
  /* Progress indicator styles */
  .progress-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 2rem;
    position: relative;
  }
  
  .progress-bg-line {
    position: absolute;
    top: 60%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e2e8f0;
    transform: translateY(-50%);
    z-index: 0;
  }
  
  .progress-active-line {
    position: absolute;
    top: 50%;
    left: 0;
    height: 2px;
    background-color: #805ad5;
    transform: translateY(-50%);
    z-index: 1;
    transition: width 0.3s ease;
  }
  
  .step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
  }
  
  .step-circle {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .step-circle.active {
    background-color: black;
    box-shadow: 0 0 0 4px rgba(128, 90, 213, 0.2);
  }
  
  .step-circle.completed {
    background-color: #48bb78;
  }
  
  .step-circle.inactive {
    background-color: #e2e8f0;
  }
  
  .step-title {
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    max-width: 5rem;
    color: #4a5568;
  }
  
  .step-title.active {
    color: black;
    font-weight: 700;
  }
  
  /* Form container styles */
  .form-container {
    /*width:10%;*/
    padding: 1rem;
    background-color: rgba(255,255,255,0.01);
    border-radius: 0rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
    position: relative;
  }
  
  .form-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    /*border-bottom: 1px solid #e2e8f0;*/
    box-shadow: 0px 5px 4px -5px black;
    color: #1a202c;
  }
  
  .form-child-container {
    /*margin-bottom: 1.5rem;*/
    display:flex;
    justify-content:center
  }
  
  .form-field {
    margin-bottom: 1.5rem;
  }
  
  .field-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #4a5568;
  }
  
  .required-mark {
    color: #e53e3e;
    margin-left: 0.25rem;
  }
  
  .help-text {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #718096;
  }
  select:focus {
    outline: none !important; 
  }
  input::placeholder {
    font-weight: normal;
    opacity: 0.7;
    color: black;
  }
  /* Form inputs */
  .form-textarea, 
  .form-select {
    width: 100%;
    padding: 8px;
    max-width:50vw;
    text-overflow: ellipsis;
    border: 0px solid #ccc;
    width: 100%;
    border-bottom:0.5px solid black;
    border-radius: 0;
    outline: none;
    transition: border-color 0.2s, background-color 0.2s;
    background-color: rgba(255,255,255,0.05);
    box-shadow: 0 4px 5px -4px black;
  }
  .form-input {
    padding: 8px;
    max-width:50vw;
    text-overflow: ellipsis;
    border: 0px solid #ccc;
    border-bottom:0.5px solid black;
    border-radius: 0;
    outline: none;
    transition: border-color 0.2s, background-color 0.2s;
    background-color: rgba(255,255,255,0.05);
    box-shadow: 0 4px 5px -4px black;
  }
  .form-input:focus, 
  .form-textarea:focus, 
  .form-select:focus {
    border: 0px solid #ccc;
    /*box-shadow: 0 0 0 3px rgba(100, 100, 100, 0.2);*/
    background-color: rgba(255,255,255,0.2);
    border-bottom: 0.5px solid black;
    outline:none
  }
  
  .input-with-flicker {
    box-shadow: 0 4px 5px -4px black;
    animation: shadowFlicker 2s ease-in-out infinite;
  }
  
  @keyframes shadowFlicker {
    0%, 100% { 
      box-shadow: 0 4px 5px -4px black; 
    }
    25% { 
      box-shadow: 0 3px 4px -3px black; 
    }
    50% { 
      box-shadow: 0 5px 6px -4px black; 
    }
    75% { 
      box-shadow: 0 4px 7px -5px black; 
    }
  }

  .form-textarea {
    resize: vertical;
    min-height: 6rem;
  }
  
  /* Checkbox and radio inputs */
  .checkbox-container,
  .radio-container {
    display: flex;
    align-items: center;
  }
  
  .radio-group {
    display: flex;
    flex-direction: column;
  }
  
  .radio-container {
    margin-bottom: 0.5rem;
  }
  
  .form-checkbox,
  .form-radio {
    /*height: 1rem;
    width: 1rem;
    margin-right: 0.5rem;*/
    accent-color: rgb(77, 185, 131);
  }
  
  .checkbox-label,
  .radio-label {
    font-size: 0.875rem;
    color: #4a5568;
    accent-color: black;
  }
  
  /* Form actions */
  .form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
  }
  
  .submit-button {
    padding: 0.5rem 1rem;
    background-color: #389aeb;
    color: white;
    border: none;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  .submit-button:hover {
    background-color: #2273b5;
  }
  
  /* Trash button */
  .trash-button {
    position: relative;
    bottom: 5%;
    left: 95%;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
  }
  
  .trash-button:hover {
    color: #e53e3e;
  }
  
  /* Step navigation */
  .step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
  }
  
  .nav-button {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  .prev-button {
    background-color: #e2e8f0;
    color: #4a5568;
    border: none;
  }
  
  .prev-button:hover:not(.disabled) {
    background-color: #cbd5e0;
  }
  
  .prev-button.disabled {
    background-color: #e2e8f0;
    color: #a0aec0;
    cursor: not-allowed;
  }
  
  .continue-button {
    background-color: rgba(77, 185, 131, 0.3);
    color: white;
    border: none;
  }
  
  .continue-button:hover:not(.submitting) {
    background-color: rgba(77, 185, 131, 0.4);
  }
  
  .continue-button.submitting {
    background-color: rgba(77, 185, 131, 0.2);
    opacity: 0.7;
    cursor: not-allowed;
  }
  
  .button-icon {
    margin: 0 0.5rem;
  }
  
  /* Loading spinner */
  .loading-spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spinner 0.75s linear infinite;
  }
  
  @keyframes spinner {
    to {
      transform: rotate(360deg);
    }
  }
  
  /* Greeting styles */
  .greeting-container,
  .thank-you-container {
    text-align: center;
    padding: 1.5rem 0;
  }
  
  .greeting-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
  }
  
  .greeting-text {
    color: #4a5568;
    margin-bottom: 1.5rem;
  }
  
  .timer-display {
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 0.5rem;
  }
  
  .timer-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 0.25rem;
  }
  
  .timer-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #805ad5;
  }
  
  .comments-display {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 0.5rem;
  }
  
  .comments-title {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #4a5568;
  }
  
  .comments-text {
    color: #4a5568;
    font-style: italic;
  }
  
  /* Thank you page styles */
  .thank-you-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #38a169;
  }
  
  .thank-you-text {
    color: #4a5568;
    margin-bottom: 2rem;
  }
  
  .restart-button {
    padding: 0.5rem 1.5rem;
    background-color: #805ad5;
    color: white;
    border: none;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  .restart-button:hover {
    background-color: #6b46c1;
  }
  
  /* Comments section */
  .comments-section {
    margin-bottom: 1.5rem;
  }
  
  /* Utility classes */
  .hidden {
    display: none;
  }
  
  /* Timer component */
  .timer-container {
    margin: 1rem 0;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    text-align: center;
  }
  
  .timer-label {
    font-size: 0.875rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
  }
  
  .timer-display {
    font-size: 1.25rem;
    font-weight: 700;
    color: #805ad5;
  }
  
  /* Form step container */
  .form-step-container {
    position: relative;
  }
  
  /* Animation for step transitions */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .form-container {
    animation: fadeIn 0.3s ease-out;
  }
  
  /* Responsive adjustments */
  @media (max-width: 640px) {
    .form-container {
      padding: 1rem;
    }
    
    .step-navigation {
      flex-direction: column;
      gap: 1rem;
    }
    
    .nav-button {
      width: 100%;
      justify-content: center;
    }
    
    .progress-container {
      margin-bottom: 1.5rem;
    }
    
    .step-title {
      font-size: 0.7rem;
      max-width: 4rem;
    }
  }
  
  /* Additional responsive adjustments for very small screens */
  @media (max-width: 400px) {
    .multi-step-form {
      padding: min(0.5rem,3vmin);
    }
    
    .form-main-title {
      font-size: 1.25rem;
    }
    
    .form-description {
      font-size: 0.875rem;
    }
    
    .step-circle {
      width: 1.25rem;
      height: 1.25rem;
      font-size: 0.7rem;
    }
    
    .step-title {
      max-width: 3rem;
      font-size: 0.65rem;
    }
  }
