/**
 * Business Setup Form - Modern Minimalist Design
 * Clean, spacious interface with smooth transitions
 */

:root {
  --primary: #64C493;
  --primary-dark: #4a9e7a;
  --text: #0C1930;
  --text-light: #6B7280;
  --border: #E5E7EB;
  --background: #F9FAFB;
  --white: #FFFFFF;
  --error: #EF4444;
  --success: #10B981;
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --transition: all 0.2s ease-in-out;
}

/* Base Styles */
.business-setup-container {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  max-width: 680px;
  margin: 2rem auto;
  padding: 0 1.5rem;
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
  width: 100%;
}

* {
  box-sizing: border-box;
}

/* Typography */
h1.setup-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  text-align: center;
  letter-spacing: -0.025em;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

p, .setup-subtitle {
  font-size: 1.0625rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.6;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.5rem;
  display: block;
}

/* -------------------- */
/* Progress Indicator   */
/* -------------------- */

.progress-container {
  margin: 0 auto 3.5rem;
  max-width: 500px;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background-color: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 0 2.5rem;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 33.33%;
  position: relative;
  overflow: hidden;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.2) 100%
  );
  animation: shimmer 2s infinite linear;
  background-size: 200% 100%;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.step-indicators {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 0 -1rem;
  padding: 0 1.5rem 2.5rem;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 0 0.5rem;
  min-height: 80px;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--border);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 2px solid transparent;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.step-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.3s ease;
  position: absolute;
  bottom: 0;
  white-space: nowrap;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
}

.step.active .step-number {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 3px 10px rgba(100, 196, 147, 0.3);
}

.step.active .step-label {
  color: var(--primary);
  font-weight: 600;
}

.step.completed .step-number {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

.step.completed .step-label {
  color: var(--text);
  font-weight: 500;
}

.step::before {
  content: '';
  position: absolute;
  top: 18px;
  left: -50%;
  right: 50%;
  height: 2px;
  background: var(--border);
  z-index: -1;
}

.step:first-child::before {
  display: none;
}

/* -------------------- */
/* Form Container       */
/* -------------------- */

.business-setup-header {
  text-align: center;
  margin-bottom: 3rem;
}

.business-setup-form {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: 2.5rem 2rem;
  position: relative;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.business-setup-form:focus-within {
  box-shadow: 0 0 0 3px rgba(100, 196, 147, 0.2), var(--shadow-md);
}

.step-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.step-header h2 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  color: var(--text);
}

.step-header p {
  color: var(--text-light);
  margin-bottom: 0;
  font-size: 1.0625rem;
}

/* -------------------- */
/* Form Steps & Fields  */
/* -------------------- */

.form-step {
  display: none;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-step.active {
  display: block;
}

.form-section {
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

/* Form Inputs */
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
  background-color: var(--white);
  background-clip: padding-box;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-height: 44px;
  box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(100, 196, 147, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #9CA3AF;
  opacity: 1;
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

/* Error States */
.form-group.error .form-input,
.form-group.error .form-select,
.form-group.error .form-textarea {
  border-color: var(--error);
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23EF4444' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem 1rem;
}

.error-message {
  color: var(--error);
  font-size: 0.8125rem;
  margin-top: 0.5rem;
  display: block;
  animation: fadeIn 0.2s ease-out;
}

.validation-error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: var(--error);
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  display: flex;
  align-items: flex-start;
  animation: slideDown 0.3s ease-out;
}

.validation-error svg {
  margin-right: 0.75rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .validation-error {
    padding: 0.75rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    word-break: break-word;
  }
  
  .validation-error svg {
    margin-right: 0.5rem;
  }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Progress Bar Styling */
.progress-fill {
    transition: width 0.5s ease-in-out;
}

.step.completed .step-number {
    background-color: #64C493;
    color: white;
}

.step.completed .step-number:after {
    content: '✓';
}

/* Completion UI */
.completion-ui {
    text-align: center;
    padding: 40px 20px;
    max-width: 500px;
    margin: 0 auto;
}

.success-icon {
    font-size: 4rem;
    color: #64C493;
    margin-bottom: 20px;
    animation: bounceIn 0.6s ease-out;
}

.completion-ui h2 {
    color: #0C1930;
    margin-bottom: 15px;
    font-size: 2rem;
}

.completion-ui p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.next-steps {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
}

.next-steps li {
    padding: 10px 0;
    color: #333;
    font-size: 1rem;
}

.next-steps li i {
    color: #64C493;
    margin-right: 10px;
    width: 20px;
}

.action-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
  .completion-ui {
    padding: 30px 15px;
  }
  
  .completion-ui h2 {
    font-size: 1.5rem;
  }
  
  .completion-ui p {
    font-size: 1rem;
  }
  
  .success-icon {
    font-size: 3rem;
  }
  
  .next-steps li {
    font-size: 0.9375rem;
  }
  
  .action-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  
  .action-buttons .btn {
    width: 100%;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-height: 44px;
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(100, 196, 147, 0.3);
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-1px);
}

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

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-outline:hover {
  background-color: var(--background);
  border-color: var(--text-light);
}

/* Form Actions */
.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.btn-group {
  display: flex;
  gap: 1rem;
}

/* Success State */
.success-state {
  text-align: center;
  padding: 3rem 1rem;
  animation: fadeIn 0.5s ease-out;
}

.success-state svg {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  color: var(--success);
}

.success-state h2 {
  margin-bottom: 1rem;
  color: var(--text);
}

.success-state p {
  color: var(--text-light);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
  .business-setup-container {
    padding: 0.5rem;
    margin: 1rem auto;
  }
  
  .business-setup-header {
    margin-bottom: 2rem;
  }
  
  h1.setup-title {
    font-size: 1.5rem;
  }
  
  p, .setup-subtitle {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }
  
  .business-setup-form {
    padding: 1.5rem 1rem;
    border-radius: 12px;
  }
  
  .progress-container {
    margin-bottom: 2.5rem;
    max-width: 100%;
  }
  
  .step-indicators {
    margin: 0;
    padding: 0 0.5rem 2rem;
  }
  
  .step {
    padding: 0 0.25rem;
    min-height: 70px;
  }
  
  .step-number {
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }
  
  .step-label {
    font-size: 0.6875rem;
    bottom: 0;
    white-space: normal;
    text-align: center;
    max-width: 65px;
    line-height: 1.2;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .step-header h2 {
    font-size: 1.25rem;
  }
  
  .step-header p {
    font-size: 0.9375rem;
  }
  
  .form-section {
    margin-bottom: 1.5rem;
  }
  
  .form-group {
    margin-bottom: 1.25rem;
  }
  
  .form-input,
  .form-select,
  .form-textarea {
    padding: 0.875rem;
    font-size: 1rem;
  }
  
  .form-actions {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 1.25rem;
  }
  
  .btn-group {
    width: 100%;
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
  }
}

/* Extra Small Screens */
@media (max-width: 375px) {
  .business-setup-container {
    padding: 0.25rem;
  }
  
  .business-setup-form {
    padding: 1.25rem 0.875rem;
  }
  
  h1.setup-title {
    font-size: 1.375rem;
  }
  
  .step-indicators {
    padding: 0 0.25rem 1.75rem;
  }
  
  .step {
    min-height: 65px;
    padding: 0 0.125rem;
  }
  
  .step-number {
    width: 28px;
    height: 28px;
    font-size: 0.8125rem;
  }
  
  .step-label {
    font-size: 0.625rem;
    max-width: 55px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .step-header h2 {
    font-size: 1.125rem;
  }
  
  .step-header p {
    font-size: 0.875rem;
  }
  
  .form-input,
  .form-select,
  .form-textarea {
    padding: 0.75rem;
    font-size: 0.9375rem;
  }
}

/* Landscape Mode for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .business-setup-container {
    margin: 0.5rem auto;
  }
  
  .business-setup-header {
    margin-bottom: 1.5rem;
  }
  
  .progress-container {
    margin-bottom: 2rem;
  }
  
  .business-setup-form {
    padding: 1.5rem 1.25rem;
  }
  
  .step-header {
    margin-bottom: 1.5rem;
  }
  
  .form-section {
    margin-bottom: 1.25rem;
  }
}

/* Removed duplicate button styles */


.btn-primary:hover {
    background: #52a376;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #0C1930;
    color: white;
    border: none;
}

.btn-secondary:hover {
    background: #1a2f4a;
    transform: translateY(-2px);
}

/* Error Banner */
.error-banner {
    background: #ffe6e6;
    border: 1px solid #e74c3c;
    color: #e74c3c;
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideDown 0.3s ease-out;
}

.error-banner .close-error {
    background: none;
    border: none;
    color: #e74c3c;
    font-size: 18px;
    cursor: pointer;
    margin-left: auto;
    padding: 0;
    width: 20px;
    height: 20px;
}

@media (max-width: 640px) {
  .error-banner {
    padding: 10px 12px;
    font-size: 0.875rem;
    gap: 8px;
    word-break: break-word;
  }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.step-header {
    text-align: center;
    margin-bottom: 2rem;
}

.step-header h2 {
    margin-bottom: 0.5rem;
}

.step-header p {
    color: #666;
    margin-bottom: 0;
}

/* -------------------- */
/* Form Elements        */
/* -------------------- */

.form-section {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    background-color: white;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
    font-weight: 400;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #64C493;
    box-shadow: 0 0 0 3px rgba(100, 196, 147, 0.1);
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

.form-select {
    cursor: pointer;
    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='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
    appearance: none;
}

/* -------------------- */
/* Buttons              */
/* -------------------- */

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    box-sizing: border-box;
    background: none;
}

/* Primary Button - #64C493 background, white text */
.btn-primary {
    background-color: #64C493;
    color: white;
    border-color: #64C493;
}

.btn-primary:hover {
    background-color: #52A67D; /* Darker green */
    color: #0C1930; /* Dark blue text */
    border-color: #52A67D;
}

/* Secondary Button - #0C1930 background, white text */
.btn-secondary {
    background-color: #0C1930;
    color: white;
    border-color: #0C1930;
}

.btn-secondary:hover {
    background-color: #0C1930; /* Same background */
    color: #0C1930; /* Text becomes same as background */
    border-color: #0C1930;
}

/* Outline Button - transparent background, #64C493 text */
.btn-outline {
    background-color: transparent;
    color: #64C493;
    border-color: #64C493;
}

.btn-outline:hover {
    background-color: #64C493; /* Green background */
    color: white; /* White text */
    border-color: #64C493;
}

/* Ghost Button for disabled/previous buttons */
.btn-ghost {
    background-color: transparent;
    color: #999;
    border-color: #ddd;
}

.btn-ghost:hover:not([disabled]) {
    background-color: #f5f5f5;
    color: #666;
    border-color: #ccc;
}

.btn-ghost[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* -------------------- */
/* Form Actions         */
/* -------------------- */

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
    position: relative;
    width: 100%;
}

.form-actions .btn-group {
    display: flex;
    gap: 1rem;
}

/* -------------------- */
/* Error States         */
/* -------------------- */

.form-group.error .form-input,
.form-group.error .form-textarea,
.form-group.error .form-select {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.error-message {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* -------------------- */
/* Loading Overlay      */
/* -------------------- */

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-overlay.active {
    display: flex;
}

.loading-spinner {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    max-width: 300px;
    width: 90%;
}

.loading-spinner i {
    font-size: 2.5rem;
    color: #64C493;
    margin-bottom: 1rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner p {
    font-size: 1rem;
    color: #333;
    margin: 0;
}

/* -------------------- */
/* Success Message      */
/* -------------------- */

.success-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.success-message.active {
    display: flex;
}

.success-content {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    max-width: 450px;
    width: 90%;
}

.success-content i {
    font-size: 4rem;
    color: #64C493;
    margin-bottom: 1.5rem;
}

.success-content h3 {
    color: #0C1930;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.success-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* -------------------- */
/* Responsive Design    */
/* -------------------- */

@media (max-width: 768px) {
    .business-setup-container {
        padding: 0.75rem;
        margin: 1.5rem auto;
    }
    
    .business-setup-header {
        margin-bottom: 2.5rem;
    }
    
    .business-setup-form {
        padding: 2rem 1.5rem;
        border-radius: 14px;
    }
    
    h1.setup-title {
        font-size: 1.625rem;
    }
    
    .progress-container {
        margin-bottom: 3rem;
    }
    
    .step-indicators {
        padding: 0 1rem 2.25rem;
    }
    
    .step {
        padding: 0 0.375rem;
        min-height: 75px;
    }
    
    .step-number {
        width: 34px;
        height: 34px;
        font-size: 0.9375rem;
    }
    
    .step-label {
        font-size: 0.75rem;
        bottom: 0;
        max-width: 80px;
        white-space: normal;
        line-height: 1.2;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .form-actions {
        flex-direction: column;
        gap: 0.875rem;
        position: static;
        margin-top: 2rem;
        padding-top: 1.25rem;
    }
    
    .form-actions .btn-group {
        width: 100%;
        justify-content: center;
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .success-content {
        padding: 2.5rem 2rem;
    }
    
    .loading-spinner {
        padding: 2rem;
    }
}

/* -------------------- */
/* Notifications        */
/* -------------------- */

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    max-width: 400px;
    animation: slideIn 0.3s ease;
}

@media (max-width: 640px) {
  .notification {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
  }
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification.notification-success {
    background-color: #64C493;
}

.notification.notification-error {
    background-color: #e74c3c;
}

.notification.notification-info {
    background-color: #3498db;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    float: right;
    cursor: pointer;
    margin-left: 1rem;
    font-size: 1.1rem;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.notification-close:hover {
    opacity: 1;
}
