.hystmodal--simple .hystmodal__window{
    position: relative;
    overflow: visible;
    border-radius: 4px;
    padding: 30px 30px;
}
/**:focus {*/
/*    outline: 2px dotted #afb3b9;*/
/*    outline-offset:2px;*/
/*}*/
.hystmodal__close{
    width: 30px !important;
    height: 30px !important;
    background-color: transparent !important;
    background-position: 50% !important;
    background-repeat: no-repeat !important;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0iI2ZmZiIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIGQ9Ik0yMiAyTDIgMjIiLz48cGF0aCBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMiIgZD0iTTIgMmwyMCAyMCIvPjwvc3ZnPg==") !important;
    background-size: 100% 100% !important;
    border: none;
    font-size: 0 !important;
    cursor: pointer !important;
    outline: none !important;
}

#hystModalTitle {
  margin: 0 0 16px;

  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;

  color: #111827; /* dark gray */
  letter-spacing: -0.02em;

  text-align: left;
}


.btn-submit {
  appearance: none;
  border: none;
  border-radius: 6px;

  padding: 12px 24px;
  min-width: 120px;

  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #fff;

  font-size: 15px;
  font-weight: 600;
  letter-spacing: .3px;

  cursor: pointer;
  transition: 
    background .25s ease,
    transform .15s ease,
    box-shadow .15s ease;

  box-shadow: 0 8px 20px rgba(79, 70, 229, .25);
  
  position: relative;
}

/* Hover */
.btn-submit:hover {
  background: linear-gradient(135deg, #4338ca, #4f46e5);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(79, 70, 229, .35);
}

/* Active */
.btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(79, 70, 229, .25);
}

/* Focus (keyboard accessibility) */
.btn-submit:focus-visible {
  outline: 3px solid rgba(99, 102, 241, .5);
  outline-offset: 3px;
}

/* Disabled */
.btn-submit:disabled {
  background: #c7c9f8;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* Spinner */

.btn-submit.loading {
  pointer-events: none;
  opacity: .8;
}

.btn-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin-left: 8px;
}

.btn-submit.loading .btn-spinner {
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Messages */
.form-message {
  margin-top: 10px;
  font-size: 14px;
}

.form-message.error {
  color: #dc2626;
}

.form-message.success {
  color: #16a34a;
}


.star-rating {
    display: inline-block;
    font-size: 28px;
    margin-bottom: 12px;
}

.star {
    color: #ccc; /* gray initially */
    cursor: pointer;
    transition: color 0.2s;
}

.star.filled {
    color: #facc15; /* yellow on hover/selected */
}


.rating-feedback .star {
    font-size: 20px;
    color: #ccc; /* gray stars */
    margin-right: 2px;
}

.rating-feedback .star.filled {
    color: #facc15; /* yellow stars */
}