body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  padding: 30px;
}

.ant-collapse {
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  background-color: #fff;
  padding: 2px;
  width: 976px;
  margin: auto;
  background-color: #d3d3d342; 
  margin-bottom: 20px;
  /* Light gray */
}

.ant-collapse-item {
  margin-bottom: 8px;
  border-bottom: 1px solid #f0f0f0;
  padding: 8px;
  cursor: pointer;

}

.ant-collapse-header {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Push text left, icon right */
}

.ant-collapse-header-text {
  flex: 1;
  margin-right: 12px;
}

.ant-collapse-expand-icon {
  margin-left: auto; /* Push to far right */
  transition: transform 0.3s ease-in-out;
}

.anticon > svg {
  transition: transform 0.3s ease-in-out;
}

.ant-collapse-content {
  display: none;
  padding: 10px 16px;
  font-size: 16px;
}

.ant-collapse-content-active {
  display: block;
}

.ant-collapse-item-active .anticon > svg {
  transform: rotate(90deg);
}


.nav__item a.active {
  background-color: #000 !important;
  color: #fff !important;
  border-radius: 0.375rem; /* Matches Tailwind's rounded-md */
}
.popup, .thankyou-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.popup-content, .thankyou-content {
  background: white;
  color: black;
  border-radius: 10px;
  padding: 20px;
  width: 90%;
  max-width: 500px;
  position: relative;
}

.popup-content h2 {
  color: black;
  margin-bottom: 10px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
  color: black;
}

label {
  display: block;
  margin-top: 10px;
  color: black;
}

input, select {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

button {
  margin-top: 15px;
  padding: 10px 20px;
  background: black;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.thankyou-content h2 {
  color: black;
}

@media (max-width: 600px) {
  .popup-content {
    padding: 15px;
  }
}
