/**
 * SelectPress Image Optimizer - Media Library Styles
 */

.spio-attachment-info {
    padding: 10px 0;
}

.spio-status {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.spio-status-converted {
    background: #e6f7ed;
    color: #00a651;
}

.spio-status-pending {
    background: #fff8e5;
    color: #996800;
}

.spio-stats-table {
    width: 100%;
    font-size: 12px;
}

.spio-stats-table td {
    padding: 3px 0;
}

.spio-stats-table td:first-child {
    color: #646970;
}

.spio-converted {
    color: #00a651;
    font-weight: 500;
}

.spio-savings {
    color: #00a651;
    font-size: 11px;
}

/* Spin animation */
@keyframes spio-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.spio-spin {
    animation: spio-spin 1s linear infinite;
    display: inline-block;
}
