.tshirt-admin-stats {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.stat-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    flex: 1;
    text-align: center;
}

.stat-box h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 16px;
}

.stat-box p {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
}

.status-approved {
    background: #d4edda;
    color: #155724;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.no-logo {
    color: #6c757d;
    font-style: italic;
    font-size: 12px;
}

.wp-list-table th {
    font-weight: 600;
}

.wp-list-table td {
    vertical-align: middle;
}

.wp-list-table img {
    border-radius: 4px;
    border: 1px solid #ddd;
    display: block;
    margin-bottom: 4px;
}

.logo-info {
    font-size: 11px;
    color: #666;
    line-height: 1.3;
    margin-bottom: 8px;
    padding: 4px;
    background: #f8f9fa;
    border-radius: 3px;
}

.logo-info:last-child {
    margin-bottom: 0;
}

.wp-list-table code {
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
}

.button-link-delete {
    color: #dc3545 !important;
}

.button-link-delete:hover {
    color: #c82333 !important;
}

@media (max-width: 768px) {
    .tshirt-admin-stats {
        flex-direction: column;
    }
    
    .stat-box {
        margin-bottom: 10px;
    }
} 