/* Theme */
:root {
  --teal: #007B86;
  --beige: #F5E8D0;
  --white: #FFFFFF;
  --text: #0B3D5B;
  --accent: #FFB300;
  --accent-dark: #E89A00;
  --header-h: 90px; /* navbar height */
}


/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "DM Sans", Arial, sans-serif;
  background: #FFFFFF;
  color: #333333;
  overflow-x: hidden;
  padding-top: var(--header-h);
}

a {
  color: inherit;
  text-decoration: none;
}


/* Navbar */
nav.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  background: var(--teal) !important;
  border-bottom: 3px solid var(--beige) !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 24px;
  padding-right: 24px;
  z-index: 999;
}

.hamburger {
  display: none;
  background: transparent;
  border: 0;
  color: #FFFFFF;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-left .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.nav-left .logo img {
  display: block;
  height: 60px;
  width: auto;
  object-fit: contain;
}

.nav-left .brand {
  color: #FFFFFF;
  font-family: "Faculty Glyphic", serif;
  font-size: 1.4rem;
  line-height: 1;
  margin: 0;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-right a {
  color: var(--beige);
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-right a:hover,
.nav-right a.active {
  color: #FFFFFF;
}

.icon-link img {
  width: 24px;
  height: 24px;
}

.cart-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.cart-icon img {
  width: 24px;
  height: 24px;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #FF6B6B;
  color: #FFFFFF;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  font-size: 0.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 4px;
  padding-right: 4px;
}


/* Navbar mobile */
@media (max-width: 900px) {
  .hamburger {
    display: block;
  }

  nav.navbar .nav-right {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--teal);
    border-bottom: 3px solid var(--beige);
    display: none;
    flex-direction: column;
    gap: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  nav.navbar.open .nav-right {
    display: flex;
  }

  .nav-right a {
    padding: 10px 16px;
  }
}

@media (max-width: 420px) {
  nav.navbar {
    padding-left: 14px;
    padding-right: 14px;
  }

  .nav-left .logo img {
    height: 50px;
  }

  .nav-left .brand {
    font-size: 1.2rem;
  }
}


/* Buttons */
.btn,
.directions-btn {
  display: inline-block;
  background: var(--teal);
  color: #FFFFFF;
  border: 2px solid var(--beige);
  border-radius: 28px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 22px;
  padding-right: 22px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn:hover,
.directions-btn:hover {
  background: #0A6C74;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 600px) {
  .btn,
  .directions-btn {
    padding-left: 18px;
    padding-right: 18px;
    font-size: 1rem;
  }
}


/* Home panels */
.hero,
.order,
.address {
  background: #FFFFFF;
  border: 3px solid var(--beige);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  margin-bottom: 40px;
  overflow: hidden;
}

.hero-content,
.order-content,
.address-content {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
}

.hero img,
.order img,
.address img {
  width: 50%;
  height: auto;
  object-fit: cover;
}

.hero-text,
.order-text,
.address-text {
  flex: 1;
  max-width: 50%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-text h1,
.order-text h2,
.address-text h2 {
  color: #333333;
  font-family: "Faculty Glyphic", serif;
  margin-bottom: 1rem;
}

.hero-text p,
.order-text p,
.address-text p {
  font-family: Poppins, sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

@media (max-width: 900px) {
  .hero-text,
  .order-text,
  .address-text {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-content,
  .order-content,
  .address-content {
    flex-direction: column;
  }

  .hero img,
  .order img,
  .address img {
    width: 100%;
  }

  .hero-text,
  .order-text,
  .address-text {
    max-width: 100%;
  }
}

@media (max-width: 420px) {
  .hero,
  .order,
  .address {
    width: 94%;
    margin-top: 28px;
    margin-bottom: 28px;
  }

  .hero-text p,
  .order-text p,
  .address-text p {
    font-size: 1rem;
  }
}


/* Home map */
.map {
  text-align: center;
  padding-top: 25px;
  padding-bottom: 35px;
  margin-top: 30px;
  margin-bottom: 30px;
  width: 80%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  background: #FFFFFF;
  border: 3px solid var(--beige);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.map h2 {
  color: var(--teal);
  font-family: "Faculty Glyphic", serif;
}

.map h4 {
  font-family: Poppins, sans-serif;
  font-weight: 400;
  margin-top: 4px;
  margin-bottom: 4px;
  color: var(--text);
}

.mapbox {
  position: relative;
  width: 80%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.mapimg {
  width: 100%;
  height: auto;
  display: block;
  border: 2px solid var(--beige);
  border-radius: 8px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

.mapbox a {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(0, 123, 134, 0.4);
  border: 2px solid var(--white);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 2;
}

.mapbox a:hover {
  background: rgba(0, 123, 134, 0.7);
  transform: scale(1.3);
}

.popup {
  position: absolute;
  left: 50%;
  bottom: 130%;
  transform: translateX(-50%);
  width: 220px;
  padding: 10px;
  background: #FFFFFF;
  color: var(--text);
  border: 2px solid var(--beige);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  font-size: 0.9rem;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 3;
}

.popup::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 7px;
  border-style: solid;
  border-color: #FFFFFF transparent transparent transparent;
  filter: drop-shadow(0 -1px 0 var(--beige));
}

.popup strong {
  display: block;
  font-size: 0.95rem;
  color: var(--teal);
  margin-bottom: 2px;
}

.popup em {
  display: block;
  font-size: 0.8rem;
  color: var(--text);
  margin-bottom: 4px;
}

.popimg {
  width: 180px;
  height: 110px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--beige);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.08);
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 6px;
}

.mapbox a:hover .popup {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

.bahamas {
  top: 18%;
  left: 30%;
}

.cuba {
  top: 36%;
  left: 36%;
}

.jamaica {
  top: 48%;
  left: 34%;
}

.haiti {
  top: 40%;
  left: 49%;
}

.dr {
  top: 41%;
  left: 55%;
}

.puertorico {
  top: 42%;
  left: 67%;
}

.honduras {
  top: 70%;
  left: 5%;
}

.nicaragua {
  top: 82%;
  left: 13%;
}

@media (max-width: 768px) {
  .map {
    width: 90%;
  }

  .mapbox {
    width: 85%;
  }
}

@media (max-width: 420px) {
  .mapbox {
    width: 92%;
  }

  .popup {
    width: 200px;
    font-size: 0.85rem;
  }
}


/* Footer */
.site-footer {
  background: var(--teal);
  border-top: 3px solid var(--beige);
  color: #FFFFFF;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-container p {
  margin: 0;
  font-size: 0.95rem;
}

.footer-nav {
  display: flex;
  gap: 18px;
}

.footer-nav a {
  color: var(--beige);
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #FFFFFF;
}

@media (max-width: 600px) {
  .footer-container {
    justify-content: center;
    text-align: center;
    gap: 8px;
  }

  .footer-nav {
    gap: 12px;
  }
}


/* Container */
.container.py-5 {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (max-width: 768px) {
  .container.py-5 {
    width: 92%;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}


/* Menu page */
#menu-grid {
  margin-top: 20px;
}

.category-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  background: #FFFFFF;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 10px;
  padding-right: 10px;
  border-bottom: 3px solid var(--beige);
}

.category-nav a {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 16px;
  padding-right: 16px;
  color: var(--teal);
  background: transparent;
  border: 2px solid transparent;
  border-radius: 10px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.category-nav a:hover {
  background: var(--beige);
  color: #0A495C;
  transform: translateY(-1px);
}

.category-nav a.active {
  background: var(--teal);
  color: #FFFFFF;
  border-color: var(--beige);
}

#menu-grid .card {
  background: #FFFFFF;
  border: 3px solid var(--beige);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

#menu-grid .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.card-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid var(--beige);
}

.card-body {
  padding: 12px;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--text);
}

.card-text {
  font-size: 0.95rem;
  color: #555555;
}

.card-footer {
  background: none;
  border-top: none;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
}

.card-footer strong {
  color: var(--accent);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#menu-grid .col-md-4 {
  opacity: 0;
  animation-name: fadeInUp;
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

#menu-grid .col-md-4:nth-child(1) {
  animation-delay: 0.1s;
}

#menu-grid .col-md-4:nth-child(2) {
  animation-delay: 0.2s;
}

#menu-grid .col-md-4:nth-child(3) {
  animation-delay: 0.3s;
}

#menu-grid .col-md-4:nth-child(4) {
  animation-delay: 0.4s;
}

#menu-grid .col-md-4:nth-child(5) {
  animation-delay: 0.5s;
}

#menu-grid .col-md-4:nth-child(6) {
  animation-delay: 0.6s;
}

@media (max-width: 600px) {
  .card-img-top {
    height: 180px;
  }

  .card-title {
    font-size: 1.15rem;
  }
}


/* Location page */
.location-container {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  margin-bottom: 40px;
  display: grid;
  gap: 30px;
}

.location-header {
  background: #FFFFFF;
  border: 3px solid var(--beige);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 24px;
  text-align: center;
}

.location-header h1 {
  font-family: "Faculty Glyphic", serif;
  color: var(--teal);
  font-size: 2rem;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1100px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}

.loc-card {
  background: #FFFFFF;
  border: 3px solid var(--beige);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.loc-card header {
  background: var(--teal);
  color: #FFFFFF;
  border-bottom: 3px solid var(--beige);
  font-family: "Faculty Glyphic", serif;
  font-size: 1.2rem;
  padding: 12px 16px;
}

.hours-box table {
  width: 100%;
  border-collapse: collapse;
  font-family: Poppins, sans-serif;
}

.hours-box th,
.hours-box td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--beige);
}

.hours-box tr:last-child td {
  border-bottom: 0;
}

.hours-box .today {
  background: rgba(0, 123, 134, 0.06);
  font-weight: 700;
}

.address-box .content {
  padding: 16px;
  font-family: Poppins, sans-serif;
  color: var(--text);
  line-height: 1.6;
}

.address-box .content p {
  margin-bottom: 10px;
}

.address-box .btn {
  margin-top: 10px;
}

.map-box {
  position: relative;
  padding-top: 56.25%;
}

.map-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0 0 9px 9px;
}

.info-pill {
  display: inline-block;
  background: var(--beige);
  color: #0A495C;
  border: 2px solid var(--beige);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 700;
  font-size: 0.9rem;
}


/* Contact page */
.contact-container {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  margin-bottom: 40px;
  display: grid;
  gap: 30px;
}

.contact-header {
  background: #FFFFFF;
  border: 3px solid var(--beige);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 24px;
  text-align: center;
}

.contact-header h1 {
  font-family: "Faculty Glyphic", serif;
  color: var(--teal);
  font-size: 2rem;
}

.contact-header p {
  margin-top: 8px;
  font-family: Poppins, sans-serif;
}

.form-status {
  margin-top: 14px;
  font-family: Poppins, sans-serif;
  font-weight: 600;
}

.form-status.success {
  color: #2E7D32;
}

.form-status.error {
  color: #C62828;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

@media (max-width: 1000px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: #FFFFFF;
  border: 3px solid var(--beige);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.contact-card header {
  background: var(--teal);
  color: #FFFFFF;
  border-bottom: 3px solid var(--beige);
  font-family: "Faculty Glyphic", serif;
  font-size: 1.2rem;
  padding: 12px 16px;
}

.contact-form {
  padding-top: 16px;
  padding-bottom: 20px;
  padding-left: 16px;
  padding-right: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 700px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #FFFFFF;
  color: #333333;
  border: 2px solid var(--beige);
  border-radius: 8px;
  padding: 10px 12px;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 123, 134, 0.12);
}

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

.form-actions {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.contact-info {
  padding: 16px;
  font-family: Poppins, sans-serif;
  color: var(--text);
  line-height: 1.6;
}

.contact-info h3 {
  font-family: "Faculty Glyphic", serif;
  color: var(--teal);
  margin-top: 6px;
  margin-bottom: 8px;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-info .info-block {
  background: #FFFFFF;
  border: 2px solid var(--beige);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 12px;
}

.contact-info a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 700;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-map {
  position: relative;
  padding-top: 56.25%;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--beige);
  margin-top: 10px;
}

.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


/* Cart page */
.cart-container {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 24px;
  background: #FFFFFF;
  border: 3px solid var(--beige);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-container h2 {
  font-family: "Faculty Glyphic", serif;
  color: var(--teal);
  font-size: 2rem;
  text-align: left;
}

.cart-container p {
  font-family: Poppins, sans-serif;
}

.cart-container a {
  color: var(--teal);
  font-weight: 700;
}

.cart-container a:hover {
  text-decoration: underline;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
  background: #FFFFFF;
  border: 2px solid var(--beige);
  border-radius: 8px;
  overflow: hidden;
}

.cart-table th,
.cart-table td {
  border-bottom: 1px solid var(--beige);
  padding: 12px;
  text-align: center;
  font-family: Poppins, sans-serif;
}

.cart-table thead th {
  background: var(--teal);
  color: #FFFFFF;
  border-bottom: 2px solid var(--beige);
  font-weight: 700;
}

.cart-summary {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  text-align: right;
  font-size: 18px;
  padding: 12px;
  background: #FFFDF8;
  border: 2px solid var(--beige);
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.cart-summary p {
  margin-top: 8px;
  margin-bottom: 8px;
  font-family: Poppins, sans-serif;
}

.cart-summary strong {
  font-size: 20px;
  color: var(--accent);
}

.pay-title {
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #333333;
}

.payment-options {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.pay-btn {
  background: #FFFFFF;
  border: 2px solid var(--beige);
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.pay-btn:hover {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.pay-logo {
  width: 100px;
  height: 30px;
  object-fit: contain;
  display: block;
}

.btn-stripe {
  border-color: #6772E5;
}

.btn-toast {
  border-color: #FF6B35;
}

.clear-cart-form {
  margin-top: 8px;
}

.clear-cart {
  display: inline-block;
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--beige);
  border-radius: 28px;
  padding: 10px 20px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.clear-cart:hover {
  background: var(--beige);
  color: #0A495C;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

@media (max-width: 600px) {
  .cart-summary {
    max-width: none;
    text-align: left;
  }

  .payment-options {
    justify-content: flex-start;
  }
}


/* Item page */
.item-detail {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.item-detail h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.item-detail .description {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.item-detail .img-col img {
  width: 500px;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.form-group {
  margin-bottom: 15px;
}

form input,
form select {
  padding: 8px;
  font-size: 16px;
}

@media (max-width: 900px) {
  .item-detail {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .item-detail .img-col img {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  .item-detail .img-col img {
    width: 300px;
    height: 300px;
  }

  .item-detail h2 {
    font-size: 24px;
  }

  .item-detail .description {
    font-size: 15px;
  }
}


/* Alerts */
.flash-added,
.alert-success {
  background: #D4EDDA;
  color: #155724;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.alert-danger {
  background: #FFE3E3;
  color: #A30000;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
}
