/* Styles pour le panneau de debug */

#chicken-debug-buttons button {
    background-color: #FF007A;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

#chicken-debug-buttons button:hover {
    background-color: #d10066;
}

#debug-panel button {
    transition: background-color 0.3s ease;
}

#debug-panel button:hover {
    background-color: #555 !important;
}

/* Animation pour le panel de debug */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

#debug-panel {
    animation: fadeIn 0.3s ease-out;
    z-index: 10000;
}
