/* First Launch Modal Styles */
#firstLaunchModal .modal-content {
  border-radius: 20px;
  overflow: hidden;
}

#firstLaunchModal .carousel-item {
  min-height: 400px;
  display: flex;
  align-items: center;
}

#firstLaunchModal .carousel-indicators {
  bottom: 20px;
}

#firstLaunchModal .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
  background-color: #dee2e6;
  border: none;
}

#firstLaunchModal .carousel-indicators button.active {
  background-color: #0d6efd;
}

/* Install Prompt Toast */
#installToast {
  max-width: 100%;
  width: 350px;
}

@media (max-width: 576px) {
  #firstLaunchModal .carousel-item {
    min-height: 70vh;
  }
  
  #installToast {
    width: 100%;
    border-radius: 0;
  }
}