.container {
    margin-top: 40px;
}

.switcher {
    display: inline-flex;
    background-color: #ffffff;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

.switcher .btn {
    border-radius: 45px;
    padding: 10px 20px;
    color: #3D9FBA;
    font-weight: 600;
    background-color: transparent;
    border: none;
    transition: background-color 0.3s ease;
    margin-right: 10px;
}

.switcher .btn:hover,
.switcher .btn:focus {
    background-color: #f0f0f0;
    box-shadow: none;
}

.switcher .btn.active {
    background-color: #EDF7FA;
}

.card {
    border-radius: 16px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border: none;
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.card-title {
    margin-left: 10px;
}

.rounded-circle {
    width: 50px;
    height: 50px;
}

.letter {
    text-align: left;
    color: #D9D9D9;
    font-size: 1.9rem;
}

.regional-container {
  width: 100%; 
  max-width: 300px; 
  background-color: #fff; 
  border-radius: 16px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); 
  margin: auto;
  transition: transform 0.3s ease-in-out;
}

.regional-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.regional-icon {
  width: 100px;
  height: auto; 
  border-radius: 50%;
}

.regional-title {
  color: #181818; 
  font-weight: 500;
  font-size: 1.4rem;
}

/* Add responsive adjustments as needed for different screen sizes */
@media (max-width: 768px) {
  .regional-container {
    /* Adjustments for smaller screens */
    max-width: 100%; /* Full width on small screens */
  }
}


.package-container {
    border-radius: 16px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border: none;
    background: #fff;
    padding: 20px;
    max-width: 350px;
    margin: 0 auto;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}
.package-container:hover {
    background: #EDF7FA;
}

.package-header {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 20px;
    color: #3D9FBA;
    text-align: left;
}

.package-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.icon-group {
    display: flex;
    align-items: center;
}

.icon {
    margin-right: 10px;
    width: 30px; /* Adjust icon size as needed */
    height: 30px; /* Adjust icon size as needed */
}


/* Responsive behavior for smaller devices */
@media (max-width: 768px) {
    .package-container {
        margin-bottom: 20px;
        max-width: 100%; 
    }
    .regional-container {
        max-width: 100%; 
  }
}


/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.5); /* Black w/ opacity */
    padding-top: 60px;
  }
  
  /* Modal Content */
  .modal-content {
    background-color: #fefefe;
    margin: 5% auto; /* 5% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 25%; /* Could be more or less, depending on screen size */
    border-radius: 15px; /* Optional: for rounded corners */
  }
  
  @media (max-width: 768px) {
    .modal-content {
        width: 90%; /* Increase width for smaller devices */
        margin: 10% auto;
    }
}

@media (min-width: 769px) {
    .modal-content {
        width: 50%; /* Moderate width for medium devices */
        margin: 5% auto;
    }
}

@media (min-width: 992px) {
    .modal-content {
        width: 30%; /* Narrower width for large devices */
    }
}

/* Close button image styles */
.close img {
    width: 25px;
    height: 25px;
    padding: 15px; 
    box-sizing: content-box;
  }
  
  /* Position the close button to the right top side */
  .close {
    cursor: pointer;
    -webkit-transition:all ease 0.5s;
    transition:all ease 0.5s;
    &:hover {
      -webkit-transform:rotate(180deg);
      transform:rotate(180deg);
      scale: 1.4;
    }
  }
  
  .modal-body {
    text-align: center;
  }

  .modal-body p {
    color: #1D2939;
    font-weight: 500;
  }
  
  .qr-code {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 250px; /* Fixed width, you can change as needed */
  }

.modal.slide-down {
  animation: slideInDown 0.5s forwards;
}

/* Slide-up animation */
.modal.slide-up {
  animation: slideOutUp 0.5s forwards;
}