/* assets/css/frontend-style.css */

.dllw-wunschbox-wrapper {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    max-width: 600px;
    margin: 0 auto;
}

.dllw-header {
    text-align: center;
    margin-bottom: 20px;
}

.dllw-form-group {
    margin-bottom: 15px;
}

.dllw-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.dllw-form-group input[type="text"],
.dllw-form-group select,
.dllw-form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.dllw-submit-btn {
    width: 100%;
    padding: 10px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.dllw-submit-btn:hover {
    background: #005177;
}

.dllw-message {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
}
.dllw-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.dllw-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.dllw-inactive { background: #e2e3e5; color: #383d41; border: 1px solid #d6d8db; }

/* POPUP STYLES */
#dllw-popup-wrapper { box-sizing: border-box; }
.dllw-popup-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.7); z-index: 99998; backdrop-filter: blur(3px); }
.dllw-popup-modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); background: white; border-radius: 12px; z-index: 99999; max-width: 500px; width: 90%; max-height: 90vh; display: flex; flex-direction: column; overflow: hidden; box-shadow: 0 10px 50px rgba(0,0,0,0.3); }
.dllw-popup-header { padding: 20px; display: flex; justify-content: space-between; align-items: center; color: white; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.dllw-popup-header h3 { margin: 0; color: white; font-size: 1.2rem; }
.dllw-close-btn { background: rgba(255,255,255,0.2); border: none; color: white; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.dllw-close-btn:hover { background: rgba(255,255,255,0.3); }
.dllw-popup-body { padding: 20px; overflow-y: auto; }
.dllw-music-only { display: none; }
.dllw-music-only.active { display: block; }

/* Float Button */
.dllw-float-btn { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; border-radius: 50%; background: #667eea; color: white; border: none; cursor: pointer; box-shadow: 0 4px 20px rgba(0,0,0,0.2); z-index: 9999; display: flex; align-items: center; justify-content: center; transition: transform 0.2s; }
.dllw-float-btn:hover { transform: scale(1.1); }
.dllw-float-btn svg { width: 30px; height: 30px; fill: currentColor; }

/* Dark Mode Support for Popup */
@media (prefers-color-scheme: dark) {
    .dllw-popup-modal { background: #1e1e1e; color: #e0e0e0; }
    .dllw-popup-body input, .dllw-popup-body textarea, .dllw-popup-body select { background: #2d2d2d; color: #fff; border-color: #444; }
}

#dllw-float-button{
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  z-index: 99990;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: transform 0.2s;"