/* ============================================
   CSS POUR LE DESIGN
   ============================================ */

/* Styles généraux */
html, body {
    font-family: 'Nunito', sans-serif;
    scroll-behavior: smooth;
}

/* Options container */
#options-container {
    min-height: 120px;
    max-height: 300px;
    overflow-y: auto;
    padding: 4px;
}

#options-container div {
    transition: all 0.2s ease;
    border: 1px solid transparent;
    margin-bottom: 6px;
    background-color: #f9fafb;
    padding: 8px 12px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#options-container div:hover {
    background-color: #e5e7eb !important;
    border-color: #14b8a6;
}

.remove-option {
    cursor: pointer;
    transition: all 0.2s ease;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: none;
}

.remove-option:hover {
    background-color: #ef4444;
    color: white !important;
}

/* Boutons */
#shuffle-btn, #reset-btn {
    background-color: #f3f4f6;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 500;
    color: #374151;
    border: 1px solid transparent;
}

#shuffle-btn:hover, #reset-btn:hover {
    background-color: #e5e7eb;
    border-color: #14b8a6;
}

#add-option-btn {
    background-color: #14b8a6;
    color: white;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 600;
    border: none;
}

#add-option-btn:hover {
    background-color: #0d9488;
}

/* Résultat */
#result-panel.hidden {
    display: none !important;
}

/* Ad placeholder */
.ad-placeholder {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border: 2px dashed #d1d5db;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #9ca3af;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #14b8a6;
    border-radius: 10px;
}