.equal-width-btn {
     width: 300px; /* adjust width as needed */
     text-align: center;
}
.separator {
     display: flex;
     align-items: center;
     padding: 0 5px;
     color: #aaa;
}
.nav-link {
     transition: color 0.3s ease; /* smooth color transition */
}
.nav-link:hover {
     color: #0d6efd; /* Bootstrap 5 primary blue */
}
.carousel-wrapper {
      position: relative;
    }

    .carousel-border {
      border: 2px solid #dee2e6;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      background-color: #fff;
      padding: 2rem;
    }

    .carousel-item {
      padding: 1rem 0;
    }

    .carousel-content {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
    }

    .carousel-content img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
    }

    .carousel-text {
      padding: 1rem;
    }

    .carousel-control-custom {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: #ffffff;
      border: 1px solid #ccc;
      border-radius: 50%;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      transition: all 0.3s ease;
    }

     .carousel-control-custom:hover {
          background-color: #0d6efd; /* Bootstrap's primary blue */
          border-color: #0d6efd;
          color: white;
     }

    .carousel-control-prev-custom {
      left: -25px;
    }

    .carousel-control-next-custom {
      right: -25px;
    }

    @media (max-width: 768px) {
      .carousel-control-custom {
        width: 40px;
        height: 40px;
      }
      .carousel-control-prev-custom {
        left: -15px;
      }
      .carousel-control-next-custom {
        right: -15px;
      }
    }

    .card-body ul {
  text-align: left;
}

.excluded-list li {
   color: #dc3545; /* Bootstrap's danger/red */
 }

  .animated-button {
    transition: all 0.25s ease;
    position: relative;
  }

  .animated-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
  }

  .toggle-wrapper {
  transition: background-color 0.3s ease;
}

.toggle-wrapper:hover {
  background-color: #e9ecef; /* subtle hover effect */
}

.toggle-label {
  transition: color 0.3s, text-decoration 0.3s;
  cursor: pointer;
}

.toggle-label:hover {
  text-decoration: underline;
  color: #0d6efd; /* Bootstrap primary blue */
}
