.random-wheel-widget .form {
  background: #f8f9fa;
  border-radius: 6px;
  padding: 15px;
  height: 100%;
}
.random-wheel-widget .description {
  color: #6c757d;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}
.random-wheel-widget .form-section {
  margin-bottom: 1.2rem;
}
.random-wheel-widget .form-section h2 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #495057;
  margin-bottom: 0.5rem;
}
.random-wheel-widget .list-controls .btn-group .btn {
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem;
}
.random-wheel-widget .list-controls .universal-textarea {
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
}
.random-wheel-widget .options-section .option-item {
  padding: 0.5rem;
}
.random-wheel-widget .options-section .option-item .form-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}
.random-wheel-widget .options-section .option-item .form-range {
  width: 100%;
}
.random-wheel-widget .wheel-section .result-banner-container {
  position: relative;
  height: 80px;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.random-wheel-widget .wheel-section .result-banner {
  background: #fff;
  border: 2px solid #fff;
  border-radius: 10px;
  padding: 12px 30px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: bannerAppear 0.5s ease-out;
  position: relative;
  z-index: 20;
  max-width: 80%;
}
.random-wheel-widget .wheel-section .result-banner #result-text {
  color: #2c3e50;
  font-weight: 700;
}
.random-wheel-widget .wheel-section .wheel-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto 20px;
  cursor: pointer;
}
.random-wheel-widget .wheel-section .wheel-container #wheel-canvas {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.14);
  transition: all 0.3s ease;
}
.random-wheel-widget .wheel-section .wheel-container .wheel-result-banner {
  font-size: 20px;
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  /* other styles remain */
}
.random-wheel-widget .wheel-section .wheel-container .wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36%; /* Significantly increased */
  height: 36%;
  max-width: 120px;
  max-height: 120px;
  background: #000000;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6), 0 5px 15px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
}
.random-wheel-widget .wheel-section .wheel-container .wheel-center .wheel-go {
  color: white;
  font-weight: bold;
  font-size: clamp(1.1rem, 2.8vw, 1.6rem);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.5px;
}
.random-wheel-widget .wheel-section .wheel-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}
.random-wheel-widget .wheel-section .wheel-controls .btn {
  padding: 10px 20px;
  font-weight: 600;
}
.random-wheel-widget .wheel-section .result-section {
  background: #f8f9fa;
  border-radius: 6px;
  padding: 15px;
}
.random-wheel-widget .wheel-section .result-section .result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}
.random-wheel-widget .wheel-section .result-section .result-header .format-selector {
  display: flex;
  gap: 5px;
  align-items: center;
  flex-wrap: wrap;
}
.random-wheel-widget .wheel-section .result-section .result-header .format-selector .btn-format {
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem;
  border: 1px solid #ced4da;
  background: #fff;
}
.random-wheel-widget .wheel-section .result-section .result-header .format-selector .btn-format.active {
  background: #007bff;
  color: #fff;
  border-color: #007bff;
}
.random-wheel-widget .wheel-section .result-section .result-header .result-actions {
  display: flex;
  gap: 5px;
}
.random-wheel-widget .wheel-section .result-section .result-header .result-actions .btn {
  font-size: 0.8rem;
  padding: 0.25rem 0.75rem;
}
.random-wheel-widget .wheel-section .result-section .result-area {
  background: #fff;
  border: 1px solid #ced4da;
  border-radius: 4px;
  padding: 15px;
  min-height: 150px;
  max-height: 300px;
  overflow-y: auto;
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  line-height: 1.4;
}
.random-wheel-widget .wheel-section .result-section .result-area .result-item {
  margin-bottom: 0.5rem;
  padding: 0.25rem 0;
  border-bottom: 1px solid #f8f9fa;
}
.random-wheel-widget .wheel-section .result-section .result-area .result-item:last-child {
  border-bottom: none;
}
.random-wheel-widget .wheel-section .result-image-container {
  margin-top: 20px;
}
.random-wheel-widget .wheel-section .result-image-container .result-image-wrapper {
  text-align: center;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  padding: 15px;
  background: #fff;
}
.random-wheel-widget .wheel-section .result-image-container .result-image-wrapper canvas {
  max-width: 100%;
  height: auto;
  border: 1px solid #ced4da;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.random-wheel-widget .wheel-section .result-image-container .result-image-wrapper .image-actions {
  text-align: center;
}

@keyframes bannerAppear {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.wheel-spinning {
  animation: spin 0.5s linear infinite;
}

.segment-blink {
  animation: blink 0.3s ease-in-out 3;
}

.segment-dim {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
  .random-wheel-widget .wheel-section .wheel-container {
    max-width: 350px;
  }
  .random-wheel-widget .wheel-section .wheel-container .wheel-result-banner {
    padding: 10px 20px;
    font-size: 1.2rem;
    min-width: 160px;
  }
  .random-wheel-widget .wheel-section .wheel-container .wheel-center {
    width: 18%;
    height: 18%;
  }
  .random-wheel-widget .wheel-section .wheel-container .wheel-center .wheel-go {
    font-size: 0.9rem;
  }
  .random-wheel-widget .wheel-section .result-header {
    flex-direction: column;
    align-items: stretch;
  }
  .random-wheel-widget .wheel-section .result-header .format-selector, .random-wheel-widget .wheel-section .result-header .result-actions {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .wheel-section .wheel-container {
    max-width: 280px;
  }
  .wheel-section .wheel-container .wheel-result-banner {
    padding: 8px 16px;
    font-size: 1rem;
    min-width: 140px;
  }
}
@keyframes wheelBannerAppear {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-40%) scale(0.7);
  }
  60% {
    opacity: 0.9;
    transform: translateX(-50%) translateY(-50%) scale(1.08);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(-50%) scale(1);
  }
}
@keyframes pulseGlow {
  0% {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4), 0 2px 10px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }
  50% {
    box-shadow: 0 6px 35px rgba(0, 0, 0, 0.6), 0 3px 15px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }
  100% {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4), 0 2px 10px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }
}
.wheel-banner-pulse {
  animation: pulseGlow 2s ease-in-out infinite;
}

.banner-copied {
  animation: copyFeedback 0.5s ease-in-out;
}

@keyframes copyFeedback {
  0% {
    transform: translateX(-50%) translateY(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) translateY(-50%) scale(0.95);
    background-color: #27ae60 !important;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) scale(1);
  }
}
/* Fix double arrow in select */
#preset-select.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Remove extra arrows from libraries */
.nice-select.form-select::after {
  display: none !important;
}

.nice-select.form-select .current::after {
  display: none !important;
}

/* Remove default browser arrow for IE */
#preset-select::-ms-expand {
  display: none;
}

/* Styles for custom select if nice-select is used */
.nice-select.form-select {
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
}

.nice-select.form-select .list {
  width: 100%;
  border-radius: 0.375rem;
  border: 1px solid #ced4da;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Simple CSS animation on hover */
.wheel-container {
  transition: all 0.4s ease;
  cursor: pointer;
}

.wheel-container:hover {
  transform: scale(1.01);
}

.wheel-container:hover #wheel-canvas {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* GO button pulsation */
.wheel-container:hover .wheel-center {
  animation: centerPulse 2s infinite;
  background: linear-gradient(135deg, #e74c3c, #ff6b6b);
}

@keyframes centerPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.08);
  }
}
/* Wheel highlight */
.wheel-container:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

/*# sourceMappingURL=randomWheel.css.map */
