.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    padding: 24px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    width: 500px;
    text-align: left;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  }
  .modal.show {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  .modal-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #dededf;
  }
  .close-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #5e5e5e;
  }
  .close-btn:hover {
    color: #231815;
  }
  .submit-btn {
    color: black;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid #acdcfe;
    background: #ceeafe;
  }
  .submit-btn:hover {
    background: #5ebcfe;
    border-color: #5ebcfe;
    color: white;
    transition: background 0.3s ease, color 0.3s ease;
    }




  textarea, input {
    width: 100%;
    padding: 8px;
    border: 1px solid #dededf;
    border-radius: 6px;
    font-size: 14px;
  }
  .radio-group {
    display: flex;
    background: #f0f0f0;
    border-radius: 8px;
    padding: 4px;
    margin-top: 5px;
  }
  .radio-btn {
    flex: 1;
    text-align: center;
    padding: 10px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    background: none;
    color: #666;
    border-radius: 8px;
  }
  .radio-btn.active {
    background: #5ebcfe;
    color: black;
  }

