.vox-dating-button *::-webkit-scrollbar {
    display: none;
  }
  .vox-dating-carousel-container {
    width: 0;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
    overflow: hidden;
    white-space: nowrap;
    transition: width 0.3s ease, padding 0.3s ease;
  }
  .vox-dating-carousel-btn {
    display: inline-block;
    align-items: center;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
    color: #222;
    white-space: nowrap;
  }
  .vox-dating-carousel-btn:hover {
    transform: translateY(-4px);
  }
  .vox-dating-carousel-btn i {
    margin-right: 8px;
  }
  .vox-dating-toggle-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .vox-dating-content {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    transition: opacity 0.3s ease, width 0.3s ease, height 0.3s ease;
  }
  .vox-dating-content p {
    margin: 0;
    font-size: 16px;
  }
  .vox-dating-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    color: #222;
    padding: 9px 20px;
    border: none;
    border-radius: 8px;
    cursor: default; /* No hand pointer for full button */
    transition: background-color 0.3s ease;
    font-size: 16px;
    width: 100%;
  }
  .vox-dating-button:hover {
    background-color: #f0f0f0;
  }
  .vox-dating-button.vox-dating-active .vox-dating-toggle-icon {
    transform: rotate(90deg);
  }
  .vox-dating-button.vox-dating-active .vox-dating-content {
    opacity: 0;
    width: 0;
    overflow: hidden;
    height: 0;
  }
  .vox-dating-button.vox-dating-active .vox-dating-carousel-container {
    width: 100%;
    padding: 10px 0;
    overflow: auto;
  }


  /* onboarding form */
  .onboarding-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 480px;
  }
  .onboarding-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #4b4b4b;
  }
  .form-group {
    margin-bottom: 15px;
  }
  label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
  }
  input, select, textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
  }
  .gender-selection {
    display: flex;
    gap: 15px;
  }
  .gender-selection label {
    font-weight: normal;
    display: inline-block;
  }
  .submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #1DA1F2; /* Twitter-like blue */
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
  }
  .submit-btn:hover {
    background-color: #0d8dd1;
  }
  .tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
  }
  .tag {
    background-color: #1DA1F2;
    color: white;
    padding: 8px;
    border-radius: 20px;
    display: flex;
    align-items: center;
  }
  .tag .remove-btn {
    margin-left: 8px;
    cursor: pointer;
    font-weight: bold;
  }



  /* dating cards */
  .card-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    perspective: 1200px;
    transition: all 0.4s ease;
  }

  .card {
    position: absolute;
    width: 320px;
    height: 100%;
    background: #ffffff;
    border-radius: 24px; /* Default rounded corners */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    cursor: grab;
    user-select: none;
    top: 0;
    left: 0;
  }

  .card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-top-left-radius: 24px; /* Keep the rounded top corners by default */
    border-top-right-radius: 24px;
    transition: height 0.4s ease;
  }

  .initial-info {
    padding: 20px;
    display: block;
    background-color: #0e0e0e8a;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    transition: display 0.4s ease;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 10em;
    color: #fff;
}

  .initial-info h2 {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .initial-info p {
    margin: 8px 0;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.4;
  }

  .info {
    padding: 20px;
    display: none; /* Initially hidden */
  }

  .info h2 {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .info p {
    margin: 8px 0;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.4;
  }

  .expand-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    height: 2.5em;
    width: 2.5em;
    background-color: #6366f1;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
    z-index: 10;
  }
  .expand-btn:hover {
    background-color: #4f46e5;
  }

  /* Smooth scroll inside the card */
  .card::-webkit-scrollbar {
    width: 5px;
  }
  .card::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 20px;
  }

  /* Styles for the full screen class */
  .fullscreen-card {
    background: rgb(243, 243, 243); /* Optional background */
    z-index: 1100 !important;
  }
  .card-container.fullscreen-card, .fullscreen-card img {
    border-radius: 0 !important;
}
.caught-up {
  color: #fff;
  text-align: center;
  padding: 1em;
}
.close-btn {
  position: absolute;
  /* top: 20px; */
  /* right: 20px; */
  z-index: 1000;
  bottom: 1em;
  margin: 0 !important;
  transform: translateX(0px) rotate(0deg);
  left: 45%;
  background: transparent;
  color: #fff;
  border: none;
}