.fooevents-bulk-variations-wrapper {
  margin: 20px 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.fooevents-bulk-variations-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
  margin-bottom: 24px;
}

.fooevents-bulk-variations-table th {
  text-align: left;
  padding: 12px 16px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fooevents-bulk-variations-table td {
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fooevents-bulk-variations-table tr td:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px 0 0 12px;
}

.fooevents-bulk-variations-table tr td:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0 12px 12px 0;
}

.fooevents-bulk-variations-table tr:hover td {
  background: rgba(255, 255, 255, 0.07);
  transition: background 0.3s ease;
}

.variation-name {
  font-weight: 600;
  color: #fff;
  font-size: 16px;
}

.variation-price {
  color: #ff3c69; /* Dynamic accent color */
  font-weight: 700;
  font-size: 16px;
}

.fooevents-qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  line-height: 1;
}

.qty-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ff3c69;
}

.fooevents-bulk-variations-table .quantity {
  display: flex;
  align-items: center;
}

.fooevents-bulk-variations-table .quantity input {
  width: 60px !important;
  background: rgba(0, 0, 0, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 8px !important;
  text-align: center;
}

.variation-out-of-stock {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    font-size: 14px;
}

.fooevents-bulk-variations-table tr.out-of-stock td {
    background: rgba(255, 255, 255, 0.01);
}

.fooevents-bulk-variations-table tr.out-of-stock .variation-name,
.fooevents-bulk-variations-table tr.out-of-stock .variation-price {
    opacity: 0.5;
}

.fooevents-bulk-add-to-cart-form button[type="submit"] {
  width: 100%;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  background: linear-gradient(45deg, #ff3c69, #ff7b54);
  border: none;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 60, 105, 0.4);
  transition: all 0.3s ease;
}

.fooevents-bulk-add-to-cart-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 60, 105, 0.6);
  filter: brightness(1.1);
}

/* Add Responsive improvements */
@media (max-width: 600px) {
  .fooevents-bulk-variations-table,
  .fooevents-bulk-variations-table thead,
  .fooevents-bulk-variations-table tbody,
  .fooevents-bulk-variations-table th,
  .fooevents-bulk-variations-table td,
  .fooevents-bulk-variations-table tr {
    display: block;
  }

  .fooevents-bulk-variations-table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .fooevents-bulk-variations-table tr {
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
  }

  .fooevents-bulk-variations-table td {
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 50%;
    text-align: right;
  }

  .fooevents-bulk-variations-table td:before {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.5);
  }

  .fooevents-bulk-variations-table td:nth-of-type(1):before {
    content: "Ticket Type";
  }
  .fooevents-bulk-variations-table td:nth-of-type(2):before {
    content: "Price";
  }
  .fooevents-bulk-variations-table td:nth-of-type(3):before {
    content: "Quantity";
  }

  .fooevents-bulk-variations-table tr td:first-child,
  .fooevents-bulk-variations-table tr td:last-child {
    border-radius: 0;
  }
}
