#uncertifyai-results {
    background: transparent;
    padding: 10px;
    border: 1px solid #c3c4c79e;
    border-radius: 4px;
    margin-top: 10px;
}

.uncertifyai-loading {
    opacity: 0.7;
    pointer-events: none;
}

.uncertifyai-dashboard-widget {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.uncertifyai-stat {
    background: #f6f7f7;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
}

.uncertifyai-stat h3 {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #646970;
}

.uncertifyai-stat p {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}

.uncertifyai-actions {
    grid-column: 1 / -1;
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.uncertifyai-usage-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.usage-card {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    padding: 20px;
}

.usage-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

.progress-bar {
    height: 20px;
    background: #f0f0f1;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: #2271b1;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.usage-numbers {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.usage-info {
    grid-column: 1 / -1;
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    padding: 20px;
    text-align: center;
}