/* Root Colors */
:root {
    --color-dpr-bg: #2D2D2D;
    --color-dpr-text: #dcdcdc;
    --color-dpr-border: red;
}

/* Dpr Print Styles */
pre.ddtt_print_r {
    background-color: var(--color-dpr-bg);
    color: var(--color-dpr-text);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px dashed var(--color-dpr-border);
    font-family: monospace;
    font-size: 0.9rem;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    width: fit-content;
}

/* Log Indicator */
.ddtt-log-count-indicator {
    display: inline-block;
    background-color: #dc3232; /* WordPress red */
    color: #fff;
    font-weight: 600;
    font-size: 11px;
    min-width: 18px;
    text-align: center;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
        Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    user-select: none;
    vertical-align: top;
    margin: 1px 0 -1px 2px;
    padding: 0 5px;
    height: 18px;
    border-radius: 9px;
    line-height: 1.6;
}

/* Example Shortcode Table */
.ddtt-example-shortcode-table {
    border-collapse: collapse;
    width: auto;
    margin: 10px 0 !important;
    font-family: Arial, sans-serif;
    font-size: 14px;
    border: 1px solid #ddd;
}

.ddtt-example-shortcode-table th,
.ddtt-example-shortcode-table td {
    border: 1px solid #ddd;
    padding: 6px 10px !important;
}

.ddtt-example-shortcode-table th {
    background-color: #f9f9f9;
    font-weight: bold;
    text-align: left;
}

.ddtt-example-shortcode-table tbody tr:nth-child(even) {
    background-color: #fafafa; /* zebra striping */
}

.ddtt-example-shortcode-table tbody tr:hover {
    background-color: #f1f1f1; /* hover highlight */
}