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


.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 */
}