    html,
    body {
        margin: 0;
        padding: 0;
        background: #ffffff;
        overflow: hidden;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    }

    .status {
        font-size: 12px;
        opacity: 0.7;
        margin-top: 4px;
        font-style: italic;
    }

    canvas {
        display: block;
    }

#tooltip {
    position: fixed;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    padding: 12px 16px;
    background: rgba(9, 26, 50, 0.85);
    backdrop-filter: blur(8px); 
    color: white;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    font-family: 'Inter', sans-serif; 
    font-size: 14px;
    line-height: 1.4;
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    transform: scale(0.9) translateY(10px);
    z-index: 1000;
}

#tooltip.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

#tooltip strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
    color: #78a0ff; 
}

#tooltip .rejection-count {
    color: #ff6b6b;
    font-weight: bold;
}

#tooltip .status {
    margin-top: 8px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}
    #dashboard {
        position: fixed;
        top: 24px;
        right: 24px;
        background: rgba(10, 20, 40, 0.6);
        backdrop-filter: blur(10px);
        border-radius: 14px;
        padding: 16px 18px;
        color: #eaf0ff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        min-width: 180px;
    }

    .stat {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
    }

    .stat:last-child {
        margin-bottom: 0;
    }

    .label {
        font-size: 12px;
        opacity: 0.75;
        letter-spacing: 0.04em;
    }

    .value {
        font-size: 20px;
        font-weight: 600;
    }

    .stat.subtle .value {
        font-size: 16px;
        opacity: 0.85;
    }

    #caption {
        font-size: 13px;
        opacity: 0.85;
    }

    #top-rejections {
        position: fixed;
        left: 20px;
        top: 20px;
        width: 220px;
        background: rgba(10, 15, 30, 0.65);
        backdrop-filter: blur(8px);
        border-radius: 14px;
        padding: 14px;
        color: #cdd9ff;
        font-family: system-ui, sans-serif;
    }

    #top-rejections h3 {
        margin: 0 0 10px;
        font-size: 14px;
        letter-spacing: 0.5px;
        opacity: 0.8;
    }

    #top-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .top-item {
        display: flex;
        align-items: center;
        padding: 10px;
        margin: 5px 0;
        border-radius: 8px;
        transition: all 0.3s ease;
        cursor: pointer;
        border-left: 3px solid transparent;
    }

    .top-item:hover {
        background: rgba(120, 160, 255, 0.15);
        border-left: 3px solid #78a0ff; 
        transform: translateX(5px); 
    }

    .top-item img {
        width: 30px;
        height: 30px;
        margin-right: 12px;
        border-radius: 4px;
        background: white; 
    }

    .top-item span {
        flex: 1;
        font-size: 13px;
    }

    .top-item strong {
        font-size: 13px;
        opacity: 0.9;
    }