/* Styles for the TriggerNinja log details thickbox view */
body {
    font-family: Arial, sans-serif;
    padding: 20px;
}

.log-section {
    margin-bottom: 20px;
}

.log-section h3 {
    margin-top: 0;
    color: #333;
}

.log-data {
    background: #f9f9f9;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    max-height: 300px;
    overflow-y: auto;
}

.status-success {
    color: #46b450;
    font-weight: bold;
}

.status-error {
    color: #dc3232;
    font-weight: bold;
}

.log-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.meta-item {
    background: #fff;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.meta-label {
    font-weight: bold;
    color: #666;
    font-size: 12px;
    text-transform: uppercase;
}

.meta-value {
    margin-top: 5px;
}
