/* Debug Information Styles */
.cnc-debug-info table {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-spacing: 0;
    width: 100%;
    margin-top: 20px;
}
.cnc-debug-info td {
    padding: 12px;
    border-bottom: 1px solid #f0f0f1;
}
.cnc-debug-info tr:last-child td {
    border-bottom: none;
}
.cnc-status-success {
    color: #46b450;
    font-weight: 500;
}
.cnc-status-error {
    color: #dc3232;
    font-weight: 500;
}
.cnc-status-warning {
    color: #ffb900;
    font-weight: 500;
}
.cnc-status-info {
    color: #666;
    font-family: monospace;
    font-size: 13px;
}
/* Debug Logging Styles */
.cnc-debug-logging {
    margin: 15px 0;
}
.cnc-toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
}
.cnc-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.cnc-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}
.cnc-toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .cnc-toggle-slider {
    background-color: #6167f8;
}
input:checked + .cnc-toggle-slider:before {
    transform: translateX(26px);
}
/* Log Viewer Styles */
.cnc-log-viewer {
    margin: 15px 0;
}
.cnc-log-content {
    width: 100%;
    min-height: 300px;
    font-family: monospace;
    background: #f6f7f7;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
}
.cnc-log-actions {
    margin-top: 10px;
}
.cnc-log-actions .button {
    margin-right: 10px;
}
.cnc-no-log {
    color: #666;
    font-style: italic;
} 
