body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.emandate-wrapper {
  padding: 30px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
}

.image-container {
  text-align: center;
  margin-bottom: 20px;
}

hr {
  margin: 30px 0;
}

h6 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
}

h6.vov.slide-in-left.text-start {
  font-size: 16px;
}

ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 8px;
}

.faq-section {
  margin-top: 20px;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item strong {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.terms-link {
  text-decoration: underline;
  color: #007bff;
  font-size: 1rem;
}

/* Bootstrap tabs styling to match React Bootstrap Nav tabs */
.nav-tabs {
  border-bottom: 1px solid #dee2e6;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  list-style: none;
}

.nav-tabs .nav-item {
  margin-bottom: -1px;
}

.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  background: transparent;
  color: #0d6efd; /* Default blue for inactive tabs */
  font-size: 13.5px;
  font-weight: 300;
  padding: 0.5rem 1rem;
  margin-right: 0;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  display: block;
  text-decoration: none;
}

.nav-tabs .nav-link:hover {
  border-color: #e9ecef #e9ecef #dee2e6;
  isolation: isolate;
  color: #0b5ed7; /* Slightly darker blue on hover */
  background-color: transparent;
}

.nav-tabs .nav-link.active {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
  font-weight: 400;
}

.nav-tabs .nav-link.active:hover {
  border-color: #dee2e6 #dee2e6 #fff;
  color: #495057;
}

.nav-tabs .nav-link:focus {
  outline: none;
  box-shadow: none;
}

.nav-tabs .nav-link:disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
  cursor: not-allowed;
  opacity: 0.65;
}

/* Video container styling */
.video-container {
  position: relative;
}

.mute-button {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.mute-button:hover {
  background: rgba(0, 0, 0, 0.7);
}

/* Mobile responsive - override video and image padding */
@media (max-width: 768px) {
  #emandate-video {
    padding-top: 20px !important; /* Reduce padding for mobile */
    margin-bottom: 20px !important; /* Reduce margin for mobile */
  }
  
  /* Escrow image mobile fix */
  #escrow-image-container img {
    padding-top: 20px !important; /* Reduce padding for mobile */
    margin-bottom: 20px !important; /* Reduce margin for mobile */
  }
  
  /* e-Commerce image mobile fix */
  #commerce-image-container img {
    padding-top: 20px !important; /* Reduce padding for mobile */
    margin-bottom: 20px !important; /* Reduce margin for mobile */
  }
}