#crash-log-panel {
    background-color: #f8f9fa;
    padding: 20px 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
}

.log-controls {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
}

#log-container {
    background-color: #333;
    color: #f0f0f0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9em;
    padding: 15px;
    border-radius: 5px;
    height: 60vh;
    overflow-y: auto;
}

.log-entry {
    border-bottom: 1px solid #555;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.log-entry:last-child {
    border-bottom: none;
}

.log-header {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    margin-bottom: 5px;
}

.log-type-error {
    color: #ff8a80;
}

.log-type-rejection {
    color: #ffb74d;
}

.log-stack {
    white-space: pre-wrap; /* Conserve les sauts de ligne */
    background-color: #222;
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
}

.log-type-client-side-error {
    color: #856404; /* Une couleur ocre/jaune pour les distinguer */
    font-weight: bold;
}
