
.shail-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  z-index: 9999;
  display: none; /* default hidden */
}

/* When modal is active */
.shail-modal.active {
  display: flex;
}
.side-modal{
    display: none;
}
.side-modal.active{
    display: block;
}
.shail-modal-content {
    background: white;
    /* padding: 42px; */
    padding: 30px 30px;
    width: 99%;
    max-width: 500px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    animation: fadeInScale 0.3s ease-in-out;
    min-height: 287px;
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 66%, rgba(238, 174, 202, 1) 107%);
}

.shail-modal-content-side {
    background: white;
    /* padding: 42px; */
    padding: 30px 30px;
    width: 99%;
    max-width: 500px;
    border-radius: 12px;
    position: fixed;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    animation: fadeInScale 0.3s ease-in-out;
    min-height: 287px;
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 66%, rgba(238, 174, 202, 1) 107%);
    height: 100vh;
    /* bottom: 0; */
    /* top: 0; */
    bottom: 0;
    right: 0;
    z-index: 999;
}
.feature-list {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.link-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.modal-link {
  text-decoration: none;
  color: #8b005d;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.shail-modal-close {
    font-size: 36px;
    position: absolute;
    right: 17px;
    top: 0;
    color: #7f0b2a;
}
.ss-modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.ss-modal-overlay.ss-show {
  display: flex;
}

.ss-modal {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Optional: Prevent body scroll when modal open */
.ss-modal-open {
  overflow: hidden;
}
