/* Custom styles for radio buttons */
input[type="radio"].peer+div {
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

input[type="radio"].peer:checked+div {
    background-color: #2563eb;
    /* Tailwind's blue-600 */
    border-color: #2563eb;
}

input[type="radio"].peer+div:hover {
    border-color: #1d4ed8;
    /* Tailwind's blue-700 */
}

.modal-overlay {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center; z-index: 1000;
}
.modal-content {
  background: #fff; padding: 2rem; border-radius: 10px; box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  text-align: center; min-width: 300px; max-width: 90vw;
  transform: scale(0.7); opacity: 0;
  animation: popIn 0.3s cubic-bezier(.68,-0.55,.27,1.55) forwards;
}
@keyframes popIn {
  to { transform: scale(1); opacity: 1; }
}
@keyframes scalein {
  0% { opacity: 0; transform: scale(0.85) translateY(40px);}
  80% { opacity: 1; transform: scale(1.03) translateY(-4px);}
  100% { opacity: 1; transform: scale(1) translateY(0);}
}
.animate-scalein {
  animation: scalein 0.32s cubic-bezier(.4,0,.2,1);
}
.modal-actions { margin-top: 1.5rem; }
.modal-actions .btn { margin: 0 0.5rem; }