/* MigrantEase Housing Companion - Enhanced Professional Design */

/* ===== Override Bootstrap for Better Integration ===== */
:root {
  /* Brand Colors */
  --bs-primary: #f97316;
  --bs-primary-rgb: 249, 115, 22;
  --primary: #f97316;
  --primary-dark: #ea580c;
  --primary-light: #fb923c;
  
  /* Enhanced Spacing */
  --section-padding: 4rem;
  --card-padding: 2rem;
  --form-padding: 2.5rem;
}

/* ===== Global Resets ===== */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1e293b;
  background: #ffffff;
}

/* ===== Completion Page Styles ===== */
.completion-section {
  padding: 3rem;
  max-width: 1000px;
  margin: 2rem auto;
  background: linear-gradient(135deg, #fef7ed 0%, #fffbeb 100%);
  border-radius: 24px;
  box-shadow: 0 20px 60px -10px rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.1);
}

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

.success-icon {
  margin-bottom: 1.5rem;
}

.success-icon-svg {
  width: 80px;
  height: 80px;
  color: white;
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  padding: 1.5rem;
  border-radius: 20px;
  display: inline-block;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.25);
}

.success-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.success-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 0;
}

.journey-summary {
  margin-bottom: 3rem;
}

.summary-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.summary-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.summary-icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.summary-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

.summary-content {
  color: #475569;
}

.summary-item {
  margin-bottom: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.summary-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.achievements-grid {
  margin-bottom: 3rem;
}

.achievement-card {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid #0ea5e9;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.achievement-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -3px rgba(14, 165, 233, 0.1);
}

.achievement-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0369a1;
  margin-bottom: 0.5rem;
}

.achievement-label {
  font-size: 0.875rem;
  color: #075985;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.next-steps-section {
  background: linear-gradient(135deg, #fef7ed 0%, #fffbeb 100%);
  border: 1px solid #f59e0b;
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 3rem;
}

.next-steps-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  color: #92400e;
  font-size: 1.25rem;
  font-weight: 600;
}

.next-steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.next-steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
  color: #78350f;
}

.next-steps-list li:before {
  content: "→";
  color: #f59e0b;
  font-weight: bold;
  margin-top: 2px;
}

.journey-actions {
  text-align: center;
  padding: 2rem 0;
}

.action-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  margin: 0 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.action-button-primary {
  background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
  color: white;
  border: none;
}

.action-button-secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

/* ===== Statistics Cards ===== */
.stats-overview {
  margin-bottom: 3rem;
}

.stat-card {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid #0ea5e9;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #0369a1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #075985;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== Next Steps Cards ===== */
.next-steps {
  margin-bottom: 3rem;
}

.next-steps-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
}

.next-step-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  height: 100%;
}

.step-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step-icon i {
  width: 24px;
  height: 24px;
  color: white;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.step-description {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}

/* ===== Final Actions Section ===== */
.final-actions {
  background: linear-gradient(135deg, #fef7ed 0%, #fffbeb 100%);
  border: 1px solid #f59e0b;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.final-actions h3 {
  color: #92400e;
  margin-bottom: 1.5rem;
}

.action-grid {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Progress Indicator ===== */
.progress-indicator {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.progress-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.progress-bar {
  width: 100%;
  height: 12px;
  background: #f1f5f9;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
  border-radius: 6px;
  transition: width 0.3s ease;
  width: 100%;
}

.progress-text {
  font-size: 0.875rem;
  color: #64748b;
}

/* ===== Resources Section ===== */
.resources-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 3rem;
}

.resources-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
}

.resource-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1.5rem;
  height: 100%;
}

.resource-card h5 {
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.resource-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.resource-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.resource-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.resource-list a {
  color: #475569;
  text-decoration: none;
}

/* ===== Completion Actions Enhanced ===== */
.completion-actions {
  margin-bottom: 3rem;
}

.completion-actions .btn {
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.completion-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.15);
}

.completion-actions .btn-success {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  border: none;
}

.completion-actions .btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: white;
}

.completion-actions .btn-outline-primary:hover {
  background: var(--primary);
  color: white;
}

/* ===== Restart Section ===== */
.restart-section {
  background: linear-gradient(135deg, #fef7ed 0%, #fffbeb 100%);
  border: 1px solid #f59e0b;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.restart-section h3 {
  color: #92400e;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.restart-section p {
  color: #78350f;
  margin-bottom: 1.5rem;
}

.restart-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1.5rem;
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.restart-button:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  text-decoration: none;
}

/* ===== Enhanced Center Layout ===== */
.main-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem 1rem;
}

.completion-section .container {
  max-width: 100%;
  text-align: center;
}

/* ===== Button Enhancements ===== */
.restart-section {
  max-width: 600px;
  margin: 3rem auto 2rem;
  text-align: center;
}

.restart-section h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #92400e;
  margin-bottom: 1rem;
}

.restart-section p {
  font-size: 1.125rem;
  color: #78350f;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.restart-section .restart-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 8px 25px -5px rgba(249, 115, 22, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.restart-section .restart-button:hover {
  box-shadow: 0 15px 35px -5px rgba(249, 115, 22, 0.3);
  transform: translateY(-3px);
}

/* ===== Enhanced Hero Section ===== */
.hero-section {
  background: linear-gradient(135deg, #fef7ed 0%, #fffbeb 100%);
  padding: var(--section-padding) 0;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-icon {
  margin-bottom: 2rem;
}

.hero-icon-svg {
  width: 80px;
  height: 80px;
  color: white;
  background: var(--primary);
  padding: 1.5rem;
  border-radius: 1rem;
  display: block;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1e293b;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-tagline {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-top: 1rem;
}

/* ===== Enhanced Buttons ===== */
.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

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

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.btn-outline-primary {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}



/* ===== Enhanced Feature Cards ===== */
.features-section {
  padding: var(--section-padding) 0;
  background: #f8fafc;
}

.feature-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: var(--card-padding);
  text-align: center;
  height: 100%;
}

.feature-icon {
  margin-bottom: 1.5rem;
}

.feature-icon-svg {
  width: 56px;
  height: 56px;
  color: white;
  background: var(--primary);
  padding: 1rem;
  border-radius: 0.75rem;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e293b;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.feature-list li {
  padding: 0.25rem 0;
  color: #64748b;
  position: relative;
  padding-left: 1.5rem;
}

.feature-list li::before {
  content: '•';
  color: var(--primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* ===== Enhanced How It Works Section ===== */
.how-it-works-section {
  padding: var(--section-padding) 0;
  background: white;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #1e293b;
}

.step-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: var(--card-padding);
  text-align: center;
  height: 100%;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e293b;
}

.step-description {
  color: #64748b;
  margin: 0;
}

/* ===== Enhanced Forms ===== */
.main-content {
  padding: var(--section-padding) 0;
  min-height: 60vh;
}

.housing-form {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: var(--form-padding);
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.section-icon {
  margin-bottom: 1.5rem;
}

.section-icon-svg {
  width: 64px;
  height: 64px;
  color: white;
  background: var(--primary);
  padding: 1rem;
  border-radius: 1rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e293b;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Form Controls ===== */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
  display: block;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control, .form-select {
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  padding: 0.75rem;
  font-size: 1rem;
  width: 100%;
  transition: border-color 0.2s ease;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
  outline: none;
}

/* ===== Enhanced Checkbox Grid ===== */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.form-check {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.form-check:hover {
  border-color: var(--primary);
  background: #fef7ed;
}

.form-check-input {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #cbd5e1;
  border-radius: 0.25rem;
  background: white;
  position: relative;
  cursor: pointer;
  margin: 0;
}

.form-check-input:checked {
  background: var(--primary);
  border-color: var(--primary);
}

.form-check-input:checked::after {
  content: '✓';
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  font-weight: bold;
}

.form-check-label {
  color: #1e293b;
  font-weight: 500;
  cursor: pointer;
  flex: 1;
}

/* ===== Search Layout ===== */
.search-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  margin: 2rem 0;
}

.tool-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.5rem;
}

.tool-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.tool-icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.tool-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: #1e293b;
}

.tool-description {
  color: #64748b;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* ===== Analysis Results ===== */
.analysis-results {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.analysis-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.analysis-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
}

/* ===== Document Upload ===== */
.upload-area {
  border: 2px dashed #cbd5e1;
  border-radius: 1rem;
  padding: 3rem 2rem;
  text-align: center;
  background: #f8fafc;
  transition: all 0.2s ease;
  cursor: pointer;
}

.upload-area:hover, .upload-area.dragover {
  border-color: var(--primary);
  background: #fef7ed;
}

.upload-icon {
  width: 48px;
  height: 48px;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* ===== Contact Templates ===== */
.template-tabs {
  display: flex;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 1.5rem;
  gap: 0.5rem;
}

.tab-button {
  background: transparent;
  border: none;
  padding: 1rem 1.5rem;
  color: #64748b;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-button.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.template-textarea {
  width: 100%;
  min-height: 300px;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  padding: 1rem;
  font-family: inherit;
  font-size: 0.875rem;
  line-height: 1.6;
  resize: vertical;
}

.copy-button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 1rem;
  transition: background-color 0.2s ease;
}

.copy-button:hover {
  background: var(--primary-dark);
}

/* ===== Progress Container ===== */
.progress-container {
  background: white;
  border-bottom: 1px solid #e2e8f0;
  padding: 1rem 0;
}

.progress-steps {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
}

.progress-step.active .step-number {
  background: var(--primary);
  color: white;
}

.step-label {
  font-size: 0.75rem;
  color: #94a3b8;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.progress-step.active .step-label {
  color: #1e293b;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  :root {
    --section-padding: 2rem;
    --card-padding: 1.5rem;
    --form-padding: 1.5rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .search-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .progress-steps {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .step-label {
    display: none;
  }
  
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Netherlands Flag and Market Info ===== */
.netherlands-market-info {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #e2e8f0;
}

.market-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

.netherlands-flag {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* ===== Utility Classes ===== */
.text-center { text-align: center; }
.text-primary { color: var(--primary) !important; }
.bg-light { background-color: #f8fafc !important; }
.border-primary { border-color: var(--primary) !important; }
.rounded-lg { border-radius: 0.75rem !important; }
.shadow-sm { box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important; }

/* ===== Form Actions ===== */
.form-actions {
  margin-top: 2rem;
  text-align: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Flash Messages ===== */
.alert {
  border-radius: 0.75rem;
  border: none;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
}

.alert-success {
  background: #f0fdf4;
  color: #166534;
  border-left: 4px solid #22c55e;
}

.alert-danger {
  background: #fef2f2;
  color: #991b1b;
  border-left: 4px solid #ef4444;
}

.alert-info {
  background: #eff6ff;
  color: #1e40af;
  border-left: 4px solid #3b82f6;
}