.floating-entrust-btn {
  position: fixed;
  top: 50%;
  right: 20px;
  z-index: 998;
  background: linear-gradient(135deg,  , ;
  color: ;
  padding: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,160,233,.45);
  cursor: pointer;
  border: none;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0;
  transition: background .2s, transform .2s, box-shadow .2s;
  writing-mode: initial;
  text-orientation: initial;
  transform: translateY(calc(-50% + 40px));
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-entrust-btn:hover {
  background: ;
}

.floating-entrust-btn:active {
  transform: translateY(calc(-50% + 40px)) scale(0.95);
}

.entrust-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.entrust-modal-overlay.active {
  display: flex;
}

.entrust-modal {
  background: ;
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
  max-height: 80vh;
  overflow-y: auto;
}

.entrust-modal-header {
  padding: 15px;
  border-bottom: 1px solid ;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.entrust-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
}

.entrust-close-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: ;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
}

.entrust-modal-body {
  padding: 15px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  color: ;
}

.entrust-required {
  color: red;
}

.form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid ;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
}

.form-control:focus {
  border-color: ;
}

.entrust-submit-btn {
  width: 100%;
  margin-top: 10px;
}
