.visasimplify {
  display: none !important;
  /* display: block; */
}



.y-spacing-top {
  margin-top: 15em;
}


.y-spacing-top-half {
  margin-top: 10em;
}


.y-spacing-bottom {
  margin-bottom: 15em;
}





.navbar-logo {
  width: 6rem;
}


.youtube-embed {
  position: relative;
  /* padding-bottom: 56%; */
  width: 100%;
  text-align: left;
}

.youtube-embed iframe {
  width: 100%;
  position: absolute;
  height: 100%;
  overflow: hidden;
}

*/ .yt-video-size {
  height: 20rem !important;
}

.radiate {
  position: relative;
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(13, 110, 253, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
  }
}


/* Form Styling */


/* Sidebar */
.mobile-nav {
  display: none;
}

@media (max-width: 767.98px) {
  .sidebar {
    display: none;
  }

  .mobile-nav {
    display: block;
    margin: 1rem;
  }
}

.sidebar .position-sticky {
  max-height: 100vh;
  overflow-y: auto;
}

.nav-link.active {
  font-weight: bold;
  color: #0d6efd;
  cursor: default;
}

.nav-link.active:hover {
  text-decoration: none;
}

.nav-link:hover {
  background-color: #e9ecef;
  border-radius: 4px;
}


/* Form Pages */
.form-section {
  margin-bottom: 40px;
}

.hint {
  font-size: 0.85rem;
  color: #6c757d;
}

input[type="text"],
input[type="date"],
input[type="radio"],
input[type="checkbox"] {
  /* background-color: #f9f9f9; */
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 6px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* 
input:focus {
  outline: none;
  border-color: #4a90e2;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}
form {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 30px;
  border-radius: 10px;
}
label {
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
} */

:root {
  --bs-input-disabled-bg: #e0e0e0;
}

[data-bs-theme=dark] {
  --bs-input-disabled-bg: #2a2a2a;
  /* dark mode */
}



/* Base style for emoji badges */
.badge-emoji {
  display: inline-flex;
  align-items: center;
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
  border: 1px solid rgba(0, 0, 0, 0.08);
  /* general soft ring */
}

/* Per-color variants (background + text + ring) */
.badge-yellow {
  background-color: #fff8db;
  color: #b79000;
  border-color: rgba(183, 144, 0, 0.25);
}

.badge-blue {
  background-color: #e8f1ff;
  color: #1f6feb;
  border-color: rgba(31, 111, 235, 0.25);
}

.badge-purple {
  background-color: #f3e8ff;
  color: #8b5cf6;
  border-color: rgba(139, 92, 246, 0.25);
}

.badge-red {
  background-color: #ffe5e5;
  color: #d12c2c;
  border-color: rgba(209, 44, 44, 0.25);
}

.badge-green {
  background-color: #e8fbe8;
  color: #1a7f37;
  border-color: rgba(26, 127, 55, 0.25);
}

.badge-orange {
  background-color: #fff1e6;
  color: #d16620;
  border-color: rgba(209, 102, 32, 0.25);
}


.text-purple {
  color: #8b5cf6;
}

.text-orange {
  color: #d16620;
}

.text-red {
  color: #dc2626;
}


/* Custom Announcement Bar Styling */
.announcement-bar {
  /* background: #ffefc3; */
  font-weight: 600;
  padding: 10px 0;
  text-align: center;
  font-size: 1rem;
  /* border-bottom: 1px solid #e2c572; */
}

nav.navbar {
  margin-top: 0;
  /* ensures the nav sits below the bar */
}

.text-custom-white {
  color: white;
}