/* Elegant Custom Modal Styles */
.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  animation: fadeIn 0.3s ease;
}
.custom-modal-card {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  max-width: 450px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  border-top: 6px solid var(--red);
}
.custom-modal-icon {
  font-size: 4.5rem;
  margin-bottom: 20px;
}
.custom-modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.custom-modal-text {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 24px;
}
.custom-modal-btn {
  padding: 12px 35px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(244, 54, 57, 0.3);
}
.custom-modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 54, 57, 0.4);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { transform: scale(0.9) translateY(20px); }
  to { transform: scale(1) translateY(0); }
}

/* Premium Styled Select Dropdown */
select.raly-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f43639' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
  padding-right: 45px !important;
  cursor: pointer;
  font-family: inherit;
  color: var(--charcoal);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
select.raly-input:focus {
  background-color: var(--white);
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(244, 54, 57, 0.15);
  outline: none;
}
select.raly-input option {
  color: var(--charcoal);
  background-color: var(--white);
  padding: 12px;
}
