.vqqt-wheel-container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
}

.vqqt-wheel-wrapper {
  text-align: center;
  background: #fff;
  padding: 25px;
  /* border: 1px solid #ddd; */
  border-radius: 4px;
  max-width: 600px;
  margin: 0 auto;
}

.vqqt-form-group {
  margin-bottom: 20px;
}

.vqqt-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.vqqt-form-group .required {
  color: #e74c3c;
}

.vqqt-form-group input[type="text"],
.vqqt-form-group input[type="email"],
.vqqt-form-group input[type="tel"],
.vqqt-form-group select,
.vqqt-form-group textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
  font-family: inherit;
}

.vqqt-form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.vqqt-form-group input:focus {
  outline: none;
  border-color: #2271b1;
  box-shadow: 0 0 0 1px #2271b1;
}

.vqqt-submit-btn {
  width: 100%;
  padding: 10px 20px;
  background: #2271b1;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.vqqt-submit-btn:hover {
  background: #135e96;
}

.vqqt-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.vqqt-message {
  padding: 12px;
  border-radius: 4px;
  margin-top: 15px;
  text-align: center;
  border-left: 4px solid;
}

.vqqt-message.success {
  background: #d4edda;
  color: #155724;
  border-color: #28a745;
}

.vqqt-message.error {
  background: #f8d7da;
  color: #721c24;
  border-color: #dc3545;
}

.vqqt-open-form-btn {
  padding: 12px 30px;
  background: #2271b1;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 20px;
}

.vqqt-open-form-btn:hover {
  background: #135e96;
}

.vqqt-wheel-holder {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

.vqqt-wheel-container-inner {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 100%;
}

.vqqt-wheel {
  display: block;
  border-radius: 50%;
  transform-origin: center center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.1s linear;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.vqqt-wheel-slice {
  transition: opacity 0.2s;
}

.vqqt-wheel-slice-text {
  pointer-events: none;
  user-select: none;
}

#vqqt-wheel {
  display: block;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.vqqt-wheel-pointer {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 25px solid #dc3232;
  z-index: 10;
}

.vqqt-spin-btn {
  padding: 12px 30px;
  background: #2271b1;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.vqqt-spin-btn:hover:not(:disabled) {
  background: #135e96;
}

.vqqt-spin-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.vqqt-result {
  background: #fff;
  color: #333;
  padding: 25px;
  border: 1px solid #ddd;
  border-left: 4px solid #2271b1;
  border-radius: 4px;
  text-align: center;
}

.vqqt-result h3 {
  margin: 0 0 15px 0;
  font-size: 24px;
  color: #2271b1;
}

.vqqt-result p {
  margin: 0;
  font-size: 16px;
}

.vqqt-result strong {
  font-size: 20px;
  display: block;
  margin-top: 10px;
  font-weight: 600;
}

.vqqt-result-info {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #eee;
  text-align: left;
}

.vqqt-result-info h4 {
  margin: 0 0 15px 0;
  font-size: 18px;
  color: #333;
  font-weight: 600;
}

.vqqt-info-item {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.6;
}

.vqqt-info-item strong {
  display: inline-block;
  min-width: 120px;
  color: #666;
  font-weight: 600;
  font-size: 14px;
  margin: 0;
}

.vqqt-info-item span {
  color: #333;
}

/* Modal Styles */
.vqqt-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vqqt-modal.show {
  display: block;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.5);
}

.vqqt-modal-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 30px;
  border: 1px solid #888;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transform: scale(0.7) translateY(-50px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.vqqt-modal.show .vqqt-modal-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.vqqt-modal-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
  line-height: 1;
}

.vqqt-modal-close:hover,
.vqqt-modal-close:focus {
  color: #000;
  text-decoration: none;
}

.vqqt-modal-content h2 {
  margin-top: 0;
  margin-bottom: 20px;
  padding-right: 30px;
}

.vqqt-modal-content .vqqt-form {
  margin-top: 20px;
}

/* Toast Notification Styles */
.vqqt-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  min-width: 300px;
  max-width: 500px;
  padding: 15px 20px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateX(400px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  font-size: 14px;
  line-height: 1.5;
}

.vqqt-toast.show {
  transform: translateX(0);
  opacity: 1;
}

.vqqt-toast.success {
  background-color: #d4edda;
  color: #155724;
  border-left: 4px solid #28a745;
}

.vqqt-toast.error {
  background-color: #f8d7da;
  color: #721c24;
  border-left: 4px solid #dc3545;
}

.vqqt-toast.warning {
  background-color: #fff3cd;
  color: #856404;
  border-left: 4px solid #ffc107;
}

.vqqt-toast.info {
  background-color: #d1ecf1;
  color: #0c5460;
  border-left: 4px solid #17a2b8;
}

.vqqt-toast-content {
  flex: 1;
  padding-right: 15px;
}

.vqqt-toast-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: inherit;
  opacity: 0.7;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.vqqt-toast-close:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .vqqt-toast {
    right: 10px;
    left: 10px;
    min-width: auto;
    max-width: none;
    transform: translateY(-100px);
  }

  .vqqt-toast.show {
    transform: translateY(0);
  }
}
