
body {
  font-family: 'Poppins', sans-serif;
}

.rs-open-btn {
  background: #14966F;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
}

.rs-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.rs-modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 400px;
  width: 100%;
}

.rs-modal-title {
  font-size: 20px;
  margin-bottom: 20px;
  color: #14966F;
  font-weight: 800;
}

.rs-form label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
}

.rs-form input {
  width: 100%;
  padding: 8px;
  margin-top: 4px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.rs-form button {
  background: #14966F;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  margin-right: 10px;
}
