/**
 * iFlows Admin Logs Styles

 * @package iFlows_for_WooCommerce
 * @since 1.0.0
 */

.log-type {
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
}

.log-type-info {
    background: #d4edda;
    color: #155724;
}

.log-type-error {
    background: #f8d7da;
    color: #721c24;
}

.log-type-warning {
    background: #fff3cd;
    color: #856404;
}

.log-type-debug {
    background: #d1ecf1;
    color: #0c5460;
}

#log-details-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999999;
    overflow: auto;
}

#log-details-content {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 3px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    white-space: pre-wrap;
    word-wrap: break-word;
    max-height: 500px;
    overflow: auto;
    line-height: 1.5;
}
