/* Wedding RSVP Theme - Variables */

:root {
  --primary-color: #2e8b57; /* Sea Green */
  --primary-light: #3cb371; /* Medium Sea Green */
  --primary-dark: #1e5631; /* Dark Green */
  --accent-gold: #d4af37; /* Gold */
  --accent-gold-light: #f1e5ac; /* Light Gold */
  --accent-pink: #ffb6c1; /* Light Pink */
  --accent-pink-dark: #db7093; /* Pale Violet Red */
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #e9ecef;
  --text-dark: #343a40;
  --text-light: #f8f9fa;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  
  /* Additional colors found in templates */
  --travel-icon-blue: #0077cc;
  --danger-red: #dc3545;
  --danger-red-bg: rgba(220, 53, 69, 0.1);
  --success-green-bg: rgba(46, 139, 87, 0.1);
  --black-transparent: rgba(0, 0, 0, 0.8);
  --success-green-transparent: rgba(46, 139, 87, 0.9);
  --danger-red-transparent: rgba(220, 53, 69, 0.9);
  --warning-yellow-transparent: rgba(255, 193, 7, 0.9);
  --shadow-light: rgba(0, 0, 0, 0.05);
  --shadow-medium: rgba(0, 0, 0, 0.1);
  --shadow-dark: rgba(0, 0, 0, 0.2);
  --text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  --white-transparent: rgba(255, 255, 255, 0.9);
  --gold-glow: rgba(255, 215, 0, 0.7);
  --text-muted: #6c757d;
  --border-color: #dee2e6;
}
/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--off-white);
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f1e5ac' fill-opacity='0.2'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  position: relative;
  overflow-x: hidden;
  width: 100%;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--primary-dark);
}

h1 {
  font-size: 2.5rem;
  /* text-align: center; */
  margin: 1.5rem 0;
  color: var(--primary-color);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

p {
  margin-bottom: 1rem;
}

/* Responsive Base Styles */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  
  p {
    font-size: 16px;
  }
  
  h1 {
    font-size: 1.8rem;
    margin: 1rem 0;
  }
  
  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 380px) {
  body {
    font-size: 14px;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.3rem;
  }
  
  h3 {
    font-size: 1.1rem;
  }
}
/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 100;
  padding: 0.5rem 1rem;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-overflow-scrolling: touch;
}

header h1 {
  font-size: 2.5rem;
  margin: 0;
}

.wedding-date {
  font-size: 1.5rem;
  color: var(--text-dark);
  font-weight: normal;
  font-family: 'Montserrat', sans-serif;
}

nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  margin: 0;
  justify-content: space-between;
  width: 100%;
}

main {
  min-height: 60vh;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .container {
    padding: 0 0.5rem;
    max-width: 100%;
  }
  
  header {
    text-align: center;
    padding: 0.5rem;
  }
  
  header h1 {
    margin-bottom: 0.5rem;
    font-size: 2rem;
  }
  
  .wedding-date {
    font-size: 1.2rem;
  }
  
  nav {
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0.5rem;
  }
}

@media (max-width: 420px) {
  .wedding-date {
    font-size: 1rem;
  }

  nav {
    gap: 0.25rem;
  }
}

@media (max-width: 380px) {
  .container {
    padding: 0 0.5rem;
  }
  
  header h1 {
    font-size: 1.4rem;
  }
  
  .wedding-date {
    font-size: 0.9rem;
  }
}
/* Cards */
.card {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 1.25rem;
  margin-bottom: 1rem;
  border-top: 4px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232e8b57' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2s9 3 9 9-9 9-9 9-9-3-9-9 9-9 9-9z'%3E%3C/path%3E%3Cpath d='M12 2v18'%3E%3C/path%3E%3Cpath d='M2 12h20'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: bottom right;
  opacity: 0.1;
  pointer-events: none;
}

/* Person Card */
.person-card {
  background-color: var(--off-white);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--accent-gold);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.person-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.person-card h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

/* Responsive Cards */
@media (max-width: 768px) {
  .card {
    padding: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .person-card {
    padding: 1rem;
  }
}

@media (max-width: 380px) {
  .card {
    padding: 0.75rem;
    margin-bottom: 0.75rem;
  }
  
  .person-card {
    padding: 0.75rem;
  }
  
  /* Ensure text is readable on very small screens */
  p, .guest-detail, .contact-item, .attendance-item {
    font-size: 14px;
  }
}
/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  font-family: 'Montserrat', sans-serif;
}

.btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  color: var(--white);
  text-decoration: none;
}

.btn-secondary {
  background-color: var(--accent-gold);
  color: var(--text-dark);
}

.btn-secondary:hover {
  background-color: var(--accent-gold-light);
  color: var(--text-dark);
}

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

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

.btn-danger {
  background-color: #dc3545;
  color: var(--white);
}

.btn-danger:hover {
  background-color: #bd2130;
  color: var(--white);
}

.btn-sm {
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  width: auto;
}

/* Navigation buttons */
nav .btn {
  padding: 0.4rem 0.8rem;
  font-size: 1.2rem;
  flex: 1;
}

/* Responsive Buttons */
@media (max-width: 768px) {
  .btn {
    padding: 0.3rem 0;
    font-size: 3vw;
    white-space: nowrap;
    /* flex: 1; */
    margin: 0 0.1rem;
    text-align: center;
  }
  
  /* Set initial size for nav buttons to prevent jarring size change */
  nav .btn {
    padding: 0.3rem 0;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  nav .btn {
    font-size: 0.9rem;
  }
}

@media (max-width: 380px) {
  .btn {
    padding: 0.25rem 0;
    font-size: 3.2vw;
  }
  
  nav .btn {
    padding: 0.25rem 0;
    font-size: 0.7rem;
  }
}
/* Forms */
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 1.1rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.2);
}

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

input[type="checkbox"] {
  margin-right: 0.5rem;
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Responsive Forms */
@media (max-width: 768px) {
  .form-group {
    margin-bottom: 0.75rem;
  }
  
  .form-control, label {
    font-size: 16px;
  }
  
  .form-actions {
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .form-group label {
    font-size: 0.9rem;
  }
  
  .form-control {
    padding: 0.6rem;
    font-size: 0.9rem;
  }
}
/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background-color: var(--white);
  box-shadow: var(--shadow);
  border-radius: 8px;
  overflow: hidden;
}

th, td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--light-gray);
}

th {
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

tr:hover td {
  background-color: var(--off-white);
}

/* Detail Items */
.detail-item {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  flex-wrap: wrap;
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  font-weight: 600;
  width: 150px;
  color: var(--primary-dark);
}

/* Responsive Tables */
@media (max-width: 768px) {
  .detail-label {
    width: 100%;
    margin-bottom: 0.25rem;
  }
  
  table, thead, tbody, th, td, tr {
    display: block;
  }
  
  /* Keep thead visible for detail tables */
  .detail-table thead tr {
    position: static;
    display: table-row !important;
  }
  
  .detail-table th {
    display: table-cell !important;
  }
  
  /* Hide regular table headers on mobile */
  table:not(.detail-table) thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  
  tr {
    margin-bottom: 0.25rem;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
  }
  
  .detail-table tr {
    margin-bottom: 0;
  }
  
  td {
    border: none;
    position: relative;
    padding-left: 50%;
    text-align: left; /* Changed from right to left */
    padding: 0.75rem 0.75rem 0.75rem 50%;
  }
  
  td:before {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: 600;
    color: var(--primary-dark);
    content: attr(data-label); /* Add content attribute to display column headers */
  }
}

@media (max-width: 380px) {
  td {
    padding: 0.5rem 0.5rem 0.5rem 45%;
  }
  
  td:before {
    top: 0.5rem;
    left: 0.5rem;
    width: 40%;
  }
}
/* Decorative Elements */
.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1rem 0;
}

.divider::before, .divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--accent-gold-light);
}

.divider::before {
  margin-right: 1rem;
}

.divider::after {
  margin-left: 1rem;
}

.divider-icon {
  color: var(--accent-gold);
  font-size: 1.2rem;
}

/* Responsive Decorative Elements */
@media (max-width: 768px) {
  .divider {
    margin: 0.75rem 0;
  }
  
  .divider::before {
    margin-right: 0.5rem;
  }
  
  .divider::after {
    margin-left: 0.5rem;
  }
  
  .divider-icon {
    font-size: 1rem;
  }
}
/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  overflow: auto;
}

.modal-content {
  position: relative;
  background-color: var(--white);
  margin: 5% auto;
  padding: 0;
  width: 95%;
  max-width: 800px;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.close-modal {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-dark);
  cursor: pointer;
  z-index: 1010;
}

.image-container {
  width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  overflow-y: auto;
  text-align: center;
}

.image-container img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

/* Responsive Modal */
@media (max-width: 380px) {
  .modal-content {
    margin: 2% auto;
    width: 98%;
  }
}

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

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

.card, .person-card {
  animation: fadeIn 0.5s ease-out;
}

.blink-attention {
  animation: blink 1s ease-in-out infinite;
  box-shadow: 0 0 10px var(--gold-glow);
}

/* Prevent FOUC (Flash of Unstyled Content) */
.js-loading nav .btn {
  visibility: hidden;
}

/* Extra small device optimizations */
.xs-device .card {
  border-radius: 6px;
  box-shadow: 0 2px 3px rgba(0,0,0,0.1);
}

.xs-device .btn {
  border-radius: 4px;
}

.xs-device .form-control {
  border-radius: 3px;
}

.xs-device .detail-item {
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
}
/* Calendar Modal Specific Styles */
/* Base modal styles are in modal.css */

/* Calendar modal content has different styling */
.calendar-modal .modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  width: 90%;
  max-width: 500px;
  text-align: center;
}

.close-btn {
  color: #333;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.calendar-options {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 20px;
}

.calendar-option {
  flex: 1;
  min-width: 100px;
  margin: 8px;
  padding: 12px;
  border-radius: 8px;
  background-color: #f8f4e5;
  cursor: pointer;
  transition: all 0.3s ease;
}

.calendar-option:hover {
  transform: translateY(-5px);
  background-color: #f0e9d2;
}

.calendar-option i {
  font-size: 2.5rem;
  color: #c8a951;
  margin-bottom: 10px;
}

.calendar-option h3 {
  margin: 5px 0;
  font-size: 1.2rem;
}

.calendar-option p {
  font-size: 0.8rem;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .calendar-modal .modal-content {
    margin: 15% auto;
    padding: 15px;
    max-height: 70vh;
    overflow-y: auto;
  }
  
  .calendar-options {
    flex-direction: column;
  }
  
  .calendar-option {
    margin: 5px 0;
    padding: 10px;
  }
  
  .calendar-option i {
    font-size: 2rem;
    margin-bottom: 5px;
  }
  
  .calendar-option h3 {
    font-size: 1rem;
    margin: 3px 0;
  }
  
  .calendar-option p {
    font-size: 0.7rem;
    margin: 0;
  }
}

/* Feature Icons and Sections */
.hero-section {
  text-align: center;
  margin: 0;
}

.lead {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
  line-height: 1.5;
}

.feature-icons {
  display: flex;
  justify-content: space-around;
  flex-wrap: nowrap;
  margin: 2rem 0;
  gap: 1rem;
}

.invite-message {
  padding: 1rem;
  border-radius: 8px;
  background-color: rgba(212, 175, 55, 0.1);
}

.invite-message i {
  font-size: 1.5rem;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
}

.invite-message p {
  font-size: 1rem;
  color: var(--primary-dark);
}

.invite-message p.small {
  font-size: 0.8rem;
  opacity: 0.7;
}

.feature {
  flex: 1;
  min-width: 80px;
  padding: 0.75rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature i {
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.feature h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.info-tabs-container {
  margin-top: 0;
  text-align: center;
  padding: 1.5rem;
  padding-top: 0.25rem;
}

@media (max-width: 768px) {
  .feature i {
    font-size: 2.5rem;
  }
  
  .feature h3 {
    font-size: 1.3rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .info-tabs-container {
    padding: 0.5rem;
  }
}

@media (max-width: 480px) {
  .feature-icons {
    margin: 1.5rem 0;
    gap: 0.5rem;
  }
  
  .feature {
    padding: 0.5rem;
    min-width: 70px;
  }
  
  .feature i {
    font-size: 2.1rem;
  }
  
  .feature h3 {
    font-size: 1.2rem;
  }
  
  .info-tabs-container {
    padding: 0.25rem;
  }
}

@media (max-width: 359px) {
  .feature-icons {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  
  .feature {
    margin-bottom: 0.5rem;
    min-width: 60px;
  }
  
  .feature i {
    font-size: 1.9rem;
  }
  
  .feature h3 {
    font-size: 1rem;
  }
}
/* Tabs Styles */
.tabs {
  display: flex;
  justify-content: space-around;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--light-gray);
  width: 100%;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tab-btn {
  background: none;
  border: none;
  padding: 0.75rem 0;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-dark);
  border-bottom: 3px solid transparent;
  margin: 0;
}

.tab-btn:hover {
  color: var(--accent-gold);
}

.tab-btn.active {
  color: var(--accent-gold);
  border-bottom: 3px solid var(--accent-gold);
  font-weight: bold;
}

.tab-content {
  display: none;
  padding: 0.2rem;
}

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

/* Timeline and Events */
.timeline {
  max-width: 100%;
  margin: 0 auto;
}

.schedule-date {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.event {
  display: flex;
  margin-bottom: 0.5rem;
  text-align: left;
  align-items: center;
}

.event:last-child {
  margin-bottom: 0;
}

.event-time {
  flex: 0 0 120px;
  font-weight: bold;
  color: var(--accent-gold);
  font-size: 1.2rem;
  margin-right: 0.75rem;
}

.event-details {
  flex: 1;
}

.event-details h3 {
  color: var(--primary-dark);
  font-size: 1.3rem;
}

.event-divider {
  margin: 0.5rem 0;
  border: none;
  border-top: 1px solid var(--light-gray);
  opacity: 1;
}

/* Map Container */
.map-container {
  margin-top: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  padding-bottom: 75%; /* 4:3 aspect ratio */
  height: 0;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Travel Section */
.travel-section {
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
}

.travel-item h3 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.travel-item h3 i {
  color: var(--accent-gold);
  margin-right: 0.5rem;
}

/* Markdown Content */
.markdown-content ul,
.markdown-content ol {
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}

.markdown-content li {
  margin-bottom: 0.5rem;
}

.markdown-content p {
  margin-bottom: 1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .tab-btn {
    font-size: 1.5rem;
    padding: 0.5rem 0;
  }
  
  .event {
    flex-direction: row;
  }
  
  .event-time {
    margin-bottom: 0;
    font-size: 1rem;
  }
  
  .event-details h3 {
    font-size: 1.1rem;
  }
  
  .travel-item {
    padding: 0;
  }
}

@media (max-width: 480px) {
  .tab-btn {
    font-size: 1.3rem;
    padding: 0.4rem 0;
    margin: 0;
  }
}

@media (max-width: 380px) {
  .tab-btn {
    font-size: 1rem;
    padding: 0.2rem 0;
    margin: 0;
  }
}
/* Alert styles */
.alert {
  padding: 10px;
  margin: 10px 0;
  border-radius: 4px;
  text-align: center;
}

.alert-danger {
  color: rgb(220, 53, 69);
  background-color: rgba(220, 53, 69, 0.1);
}

.fw-bold {
  font-weight: bold;
}