.modal {
    display: none; 
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    width: 70%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.done {
    background-color: #888;
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 5px;
}

.done:hover,
.done:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-body .slide {
    display: none;
}

.modal-body .active {
    display: block;
}

.modal-footer {
    text-align: center;
    margin-top: 20px;
}

.modal-footer .prev,
.modal-footer .next {
    background-color: #007bff; /* Change the background color to your preference */
  color: #fff; /* Text color */
  border: none;
  width: 50px; /* Set a fixed width and height for the circular shape */
  height: 50px;
  border-radius: 50%; /* Make it circular */
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.modal-footer .prev:hover,
.modal-footer .next:hover {
    background-color: #fff;
    color: #007bff ;
}

i.fas.fa-arrow-right {
    margin: 0; /* Remove any margin or padding from the icon */
  }

.confetti-piece {
    position: fixed;
    width: 10px;
    height: 10px;
    background-color: #ffcc00;
    opacity: 0.7;
    z-index: 9999;
  }
  
  @keyframes confetti-animation {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(500px) rotate(720deg); opacity: 0; }
  }
  

  #onboardingModal {
    display: none;
}
.modal-footer button {
    border: none;
    cursor: pointer;
    outline: none;
}

.modal-footer button:hover i {
    color: #3498db; /* Change to your desired hover color */
    transform: scale(1.1); /* Scale the icon on hover */
    transition: transform 0.3s ease, color 0.3s ease;
}

.modal-footer button i {
    font-size: 20px; /* Adjust icon size as needed */
    transition: transform 0.3s ease, color 0.3s ease;
}
